From ebc22004603afebc4f29678be70b64ad3cd0b819 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 26 Apr 2010 18:52:14 +0000 Subject: [PATCH] Remove debug git-svn-id: http://svn.automattic.com/wordpress/trunk@14243 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ms.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php index 32e67b344..098df8e0f 100644 --- a/wp-admin/includes/ms.php +++ b/wp-admin/includes/ms.php @@ -273,12 +273,10 @@ function wpmu_get_blog_allowedthemes( $blog_id = 0 ) { } function update_option_new_admin_email( $old_value, $value ) { - error_log(var_export($value, true)); $email = get_option( 'admin_email' ); - error_log(var_export($email, true)); if ( $value == get_option( 'admin_email' ) || !is_email( $value ) ) return; -error_log('here'); + $hash = md5( $value. time() .mt_rand() ); $new_admin_email = array( 'hash' => $hash,