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

git-svn-id: http://svn.automattic.com/wordpress/trunk@6723 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-02-05 03:18:46 +00:00
parent ae364a2262
commit 252c30c9c1
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 ) {