Make WordPress Core

Changeset 14364


Ignore:
Timestamp:
05/03/2010 09:51:40 AM (15 years ago)
Author:
nacin
Message:

Fix notice in ms_not_installed().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-load.php

    r14317 r14364  
    200200    global $wpdb, $domain, $path;
    201201
    202     $msg  = '<h1>' . /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/ . '</h1>';
     202    $title = /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/;
     203    $msg  = '<h1>' . $title . '</h1>';
    203204    if ( ! is_admin() )
    204205        die( $msg );
     
    221222    wp_die( $msg, $title );
    222223}
     224
     225?>
Note: See TracChangeset for help on using the changeset viewer.