From eeaa9f9ac9cfb3d6bd2d4ce361c407f9c6acb698 Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 14 Jan 2008 19:05:09 +0000 Subject: Replace wordpress.com with localhost.localdomain example email Use site admin email on non-activated blogs git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1186 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wp-settings.php') diff --git a/wp-settings.php b/wp-settings.php index 292f5d4..f61342f 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -269,7 +269,7 @@ if ( '1' == $current_blog->deleted ) graceful_fail(__('This user has elected to delete their account and the content is no longer available.')); if ( '2' == $current_blog->deleted ) - graceful_fail(sprintf(__('This blog has not been activated yet. If you are having problems activating your blog, please contact support@{%1$s}.'), $current_site->domain)); + graceful_fail(sprintf(__('This blog has not been activated yet. If you are having problems activating your blog, please contact %1$s.'), get_site_option( 'admin_email', "support@{$current_site->domain}" ))); if( $current_blog->archived == '1' ) graceful_fail(__('This blog has been archived or suspended.')); -- cgit