Make WordPress Core


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

Use get_option instead of get_settings. Just 'cause.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/classes.php

    r4141 r4144  
    99        global $wpdb;
    1010
    11         $list = explode("\n", get_settings('moderation_keys') );
     11        $list = explode("\n", get_option('moderation_keys') );
    1212        $list = array_unique( $list );
    1313        $this->spam_words = $list;
     
    117117            $req_uri = $req_uri_array[0];
    118118            $self = $_SERVER['PHP_SELF'];
    119             $home_path = parse_url(get_settings('home'));
     119            $home_path = parse_url(get_option('home'));
    120120            $home_path = $home_path['path'];
    121121            $home_path = trim($home_path, '/');
Note: See TracChangeset for help on using the changeset viewer.