Make WordPress Core


Ignore:
Timestamp:
08/30/2006 09:46:31 PM (18 years ago)
Author:
ryan
Message:

Use get_option instead of get_settings. Just 'cause.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/author-template.php

    r4140 r4144  
    175175
    176176    if ( empty($link) ) {
    177         $file = get_settings('home') . '/';
     177        $file = get_option('home') . '/';
    178178        $link = $file . '?author=' . $auth_ID;
    179179    } else {
     
    184184        }
    185185        $link = str_replace('%author%', $author_nicename, $link);
    186         $link = get_settings('home') . trailingslashit($link);
     186        $link = get_option('home') . trailingslashit($link);
    187187    }
    188188
Note: See TracChangeset for help on using the changeset viewer.