Changeset 1203 for trunk/wp-includes/template-functions-post.php
- Timestamp:
- 04/28/2004 07:27:03 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-post.php
r1150 r1203 374 374 $nextpage = intval($paged) + 1; 375 375 if (!$max_page || $max_page >= $nextpage) { 376 echo get_settings(' siteurl') .'/'.$pagenow.$querystring_start.376 echo get_settings('home') .'/'.$pagenow.$querystring_start. 377 377 ($qstr == '' ? '' : $qstr.$querystring_separator) . 378 378 'paged'.$querystring_equal.$nextpage; … … 426 426 $nextpage = intval($paged) - 1; 427 427 if ($nextpage < 1) $nextpage = 1; 428 echo get_settings(' siteurl') .'/'.$pagenow.$querystring_start.428 echo get_settings('home') .'/'.$pagenow.$querystring_start. 429 429 ($qstr == '' ? '' : $qstr.$querystring_separator) . 430 430 'paged'.$querystring_equal.$nextpage;
Note: See TracChangeset
for help on using the changeset viewer.