Changeset 4144 for trunk/wp-includes/classes.php
- Timestamp:
- 08/30/2006 09:46:31 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/classes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r4141 r4144 9 9 global $wpdb; 10 10 11 $list = explode("\n", get_ settings('moderation_keys') );11 $list = explode("\n", get_option('moderation_keys') ); 12 12 $list = array_unique( $list ); 13 13 $this->spam_words = $list; … … 117 117 $req_uri = $req_uri_array[0]; 118 118 $self = $_SERVER['PHP_SELF']; 119 $home_path = parse_url(get_ settings('home'));119 $home_path = parse_url(get_option('home')); 120 120 $home_path = $home_path['path']; 121 121 $home_path = trim($home_path, '/');
Note: See TracChangeset
for help on using the changeset viewer.