fixing next/previous page links to work w/ clean URLs

git-svn-id: https://develop.svn.wordpress.org/trunk@713 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Alex King 2004-01-04 02:54:36 +00:00
parent 1c82c615d5
commit 9d54e6a0c5
1 changed files with 4 additions and 4 deletions

View File

@ -1239,7 +1239,7 @@ function next_posts($max_page = 0) { // original by cfactor at cooltux.org
if (!$paged) $paged = 1;
$nextpage = intval($paged) + 1;
if (!$max_page || $max_page >= $nextpage) {
echo $pagenow.$querystring_start.
echo $siteurl.'/'.$pagenow.$querystring_start.
($qstr == '' ? '' : $qstr.$querystring_separator) .
'paged'.$querystring_equal.$nextpage;
}
@ -1265,7 +1265,7 @@ function next_posts_link($label='Next Page »', $max_page=0) {
$nextpage = intval($paged) + 1;
if (empty($p) && (empty($paged) || $nextpage <= $max_page)) {
echo '<a href="';
echo next_posts($max_page);
next_posts($max_page);
echo '">'. htmlspecialchars($label) .'</a>';
}
}
@ -1291,7 +1291,7 @@ function previous_posts() { // original by cfactor at cooltux.org
}
$nextpage = intval($paged) - 1;
if ($nextpage < 1) $nextpage = 1;
echo $pagenow.$querystring_start.
echo $siteurl.'/'.$pagenow.$querystring_start.
($qstr == '' ? '' : $qstr.$querystring_separator) .
'paged'.$querystring_equal.$nextpage;
}
@ -1301,7 +1301,7 @@ function previous_posts_link($label='&laquo; Previous Page') {
global $p, $paged, $what_to_show;
if (empty($p) && ($paged > 1) && ($what_to_show == 'paged')) {
echo '<a href="';
echo previous_posts();
previous_posts();
echo '">'. htmlspecialchars($label) .'</a>';
}
}