The two flags "default_ping_status" and "default_comment_status" weren't being
recorded properly. git-svn-id: http://svn.automattic.com/wordpress/trunk@1681 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c83efe02ea
commit
b28a9e34b0
|
@ -71,7 +71,7 @@ $nonbools = array('default_ping_status', 'default_comment_status');
|
|||
else
|
||||
$new_val = 0;
|
||||
}
|
||||
if( in_array($option->option_name, $nonbools) && $new_val == 0 ) $new_val = 'closed';
|
||||
if( in_array($option->option_name, $nonbools) && $new_val == '0' ) $new_val = 'closed';
|
||||
if ($new_val !== $old_val)
|
||||
$result = $wpdb->query("UPDATE $wpdb->options SET option_value = '$new_val' WHERE option_name = '$option->option_name'");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue