Changeset 3670 for trunk/wp-includes/functions.php
- Timestamp:
- 03/31/2006 08:07:39 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r3666 r3670 2267 2267 load_template(ABSPATH . 'wp-atom.php'); 2268 2268 } 2269 2270 function is_blog_installed() { 2271 global $wpdb; 2272 $wpdb->hide_errors(); 2273 $installed = $wpdb->get_var("SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'"); 2274 $wpdb->show_errors(); 2275 return $installed; 2276 } 2269 2277 ?>
Note: See TracChangeset
for help on using the changeset viewer.