From 4fea8231678379afb620e0b9f3c8358e688a24b9 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 26 Apr 2010 18:52:14 +0000 Subject: [PATCH] Remove debug git-svn-id: https://develop.svn.wordpress.org/trunk@14243 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 32e67b344d..098df8e0fb 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,