Make WordPress Core


Ignore:
Timestamp:
03/31/2006 08:07:39 AM (19 years ago)
Author:
ryan
Message:

Pluggable install functions. fixes #2616

File:
1 edited

Legend:

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

    r3666 r3670  
    22672267    load_template(ABSPATH . 'wp-atom.php');
    22682268}
     2269
     2270function 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}
    22692277?>
Note: See TracChangeset for help on using the changeset viewer.