commit 5d5e64f503b3bf54c0bba8aa804762ba55d7b821
parent b3276d0d2bf4dbd17cf098d5d0c85534aeb773d0
Author: MTRNord <mtrnord1@gmail.com>
Date: Sun, 23 Nov 2014 11:12:33 +0100
maybe fixed endless loop :/
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/themes/jumbotron/index.php b/themes/jumbotron/index.php
@@ -78,7 +78,7 @@
<h1>
<?php
$x = 0;
- while ($x < $post_id){
+ while ($x < $post_id_clean){
echo "<a href='index.php?id=".var_dump($post_id[$x])."' rel='bookmark'> $post_title </a>";
$x = $x + 1;
}