Concatenate this.
git-svn-id: http://svn.automattic.com/wordpress/trunk@2241 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
81e7d9218f
commit
300476b51c
|
@ -129,7 +129,7 @@ function get_author_link($echo = false, $author_id, $author_nicename) {
|
|||
|
||||
if (empty($link)) {
|
||||
$file = get_settings('home') . '/';
|
||||
$link = $file . '?author=' . .$auth_ID;
|
||||
$link = $file . '?author=' . $auth_ID;
|
||||
} else {
|
||||
if ('' == $author_nicename) $author_nicename = $cache_userdata[$author_id]->author_nicename;
|
||||
$link = str_replace('%author%', $author_nicename, $link);
|
||||
|
|
|
@ -185,7 +185,7 @@ function link_pages($before='<br />', $after='<br />', $next_or_number='number',
|
|||
$i=$page-1;
|
||||
if ($i && $more) {
|
||||
if ('' == get_settings('permalink_structure')) {
|
||||
echo '<a href="' . get_permalink() '&page=' . $i . '">'.$previouspagelink.'</a>';
|
||||
echo '<a href="' . get_permalink() . '&page=' . $i . '">'.$previouspagelink.'</a>';
|
||||
} else {
|
||||
echo '<a href="' . get_permalink() . $i . '/">'.$previouspagelink.'</a>';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue