Compare commits

..

No commits in common. "3587f38bac29dd260f49c8e4c45d3e67d0edb17f" and "6ba274cbeaae2ca6328cdc4a4479c015d161fb43" have entirely different histories.

View File

@ -249,7 +249,7 @@
$CMS_SINGLE_POST = true;
}
$i = 0;
$morePosts = 0;
$morePosts = false;
foreach($posts as $k=>$v) {
if ($v->isPublic) {
if (!isset($tagSearch) || in_array($tagSearch, $v->tags)) {
@ -277,30 +277,22 @@
echo '<hr class="postSeparator">';
}
if (($i % POSTS_PAGE_SIZE) == 0) {
$morePosts = 1;
} else {
if ($morePosts == 1) {
$morePosts = 2;
$morePosts = true;
break;
} else {
$morePosts = 0;
}
}
}
}
}
}
if (!isset($CMS_RSS)) {
if ($morePosts == 2 || $postsSkip > 0)
if ($morePosts || $postsSkip > 0)
echo "<p><table class=\"blognav\"><tr>";
if ($morePosts == 2)
if ($morePosts)
echo '<td><a href="' . "?p=blog$tagSearchUrl&s=" . ($postsPage+1) . '">&lt;&lt; Older posts</a></td>';
if ($postsSkip > 0)
echo '<td style="text-align:right;"><a href="' . "?p=blog$tagSearchUrl&s=" . ($postsPage-1) . '">Newer posts &gt;&gt;</a></td>';
if ($morePosts == 2|| $postsSkip > 0)
if ($morePosts || $postsSkip > 0)
echo "</tr></table></p>";
}
}
if (!isset($CMS_RSS))
echo "</blog>";
?>