Use wpurl, not home, for constructing paging links. see #5684

git-svn-id: https://develop.svn.wordpress.org/trunk@6723 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-02-05 03:18:46 +00:00
parent 7e9dd43b6a
commit d5bf63fb8d
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ $count = tag_rows( $pagenum, $tagsperpage, $searchterms );
</table>
<?php
$baseurl = get_bloginfo( 'siteurl' ) . '/wp-admin/edit-tags.php?pagenum=';
$baseurl = get_bloginfo( 'wpurl' ) . '/wp-admin/edit-tags.php?pagenum=';
if( $pagenum >= 1 ) {
echo '<a href="' . $baseurl . ($pagenum - 1 ) . '">&lt;&lt;' . __('Previous Tags') . '</a>';
if( $count == $tagsperpage ) {