mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
Fix notice in ms_not_installed().
git-svn-id: http://svn.automattic.com/wordpress/trunk@14364 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c5af6664a6
commit
223277cc44
@ -199,7 +199,8 @@ function wpmu_current_site() {
|
||||
function ms_not_installed() {
|
||||
global $wpdb, $domain, $path;
|
||||
|
||||
$msg = '<h1>' . /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/ . '</h1>';
|
||||
$title = /*WP_I18N_FATAL_ERROR*/'Error establishing database connection'/*/WP_I18N_FATAL_ERROR*/;
|
||||
$msg = '<h1>' . $title . '</h1>';
|
||||
if ( ! is_admin() )
|
||||
die( $msg );
|
||||
$msg .= '<p>' . /*WP_I18N_CONTACT_OWNER*/'If your site does not display, please contact the owner of this network.'/*/WP_I18N_CONTACT_OWNER*/ . '';
|
||||
@ -220,3 +221,5 @@ function ms_not_installed() {
|
||||
|
||||
wp_die( $msg, $title );
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue
Block a user