Concatenate this.

git-svn-id: http://svn.automattic.com/wordpress/trunk@2241 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rboren 2005-02-07 09:14:14 +00:00
parent 81e7d9218f
commit 300476b51c
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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() '&amp;page=' . $i . '">'.$previouspagelink.'</a>';
echo '<a href="' . get_permalink() . '&amp;page=' . $i . '">'.$previouspagelink.'</a>';
} else {
echo '<a href="' . get_permalink() . $i . '/">'.$previouspagelink.'</a>';
}