From b34249168a364f1eef7806abc65fcdc5304578f1 Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 4 Jul 2008 14:37:00 +0000 Subject: Mangle the admin email address when a blog isn't activated, fixes #671 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1349 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 b55f585..834f26e 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -330,7 +330,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 %1$s.'), get_site_option( 'admin_email', "support@{$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.' ), str_replace( '@', ' AT ', get_site_option( 'admin_email', "support@{$current_site->domain}" ) ) ) ); if( $current_blog->archived == '1' ) graceful_fail(__('This blog has been archived or suspended.')); -- cgit