summaryrefslogtreecommitdiffstats
path: root/wp-settings.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-07-04 14:37:00 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-07-04 14:37:00 +0000
commitb34249168a364f1eef7806abc65fcdc5304578f1 (patch)
tree6501d7c15974207641c657e8405aff11eb2ea0d1 /wp-settings.php
parente1e5cc697facc16d122d84caeab6eaa819f1dfbd (diff)
downloadwordpress-mu-b34249168a364f1eef7806abc65fcdc5304578f1.tar.gz
wordpress-mu-b34249168a364f1eef7806abc65fcdc5304578f1.tar.xz
wordpress-mu-b34249168a364f1eef7806abc65fcdc5304578f1.zip
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
Diffstat (limited to 'wp-settings.php')
-rw-r--r--wp-settings.php2
1 files changed, 1 insertions, 1 deletions
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 <a href="mailto:%1$s">%1$s</a>.'), 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 <a href="mailto:%1$s">%1$s</a>.' ), 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.'));