Remove debug

git-svn-id: https://develop.svn.wordpress.org/trunk@14243 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-04-26 18:52:14 +00:00
parent 92b7f84b59
commit 4fea823167
1 changed files with 1 additions and 3 deletions

View File

@ -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,