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
wp-admin
|
@ -58,7 +58,7 @@ case 'update':
|
||||||
|
|
||||||
// HACK
|
// HACK
|
||||||
// Options that if not there have 0 value but need to be something like "closed"
|
// Options that if not there have 0 value but need to be something like "closed"
|
||||||
$nonbools = array('default_ping_status', 'default_comment_status');
|
$nonbools = array('default_ping_status', 'default_comment_status');
|
||||||
if ($options) {
|
if ($options) {
|
||||||
foreach ($options as $option) {
|
foreach ($options as $option) {
|
||||||
// should we even bother checking?
|
// should we even bother checking?
|
||||||
|
@ -71,7 +71,7 @@ $nonbools = array('default_ping_status', 'default_comment_status');
|
||||||
else
|
else
|
||||||
$new_val = 0;
|
$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)
|
if ($new_val !== $old_val)
|
||||||
$result = $wpdb->query("UPDATE $wpdb->options SET option_value = '$new_val' WHERE option_name = '$option->option_name'");
|
$result = $wpdb->query("UPDATE $wpdb->options SET option_value = '$new_val' WHERE option_name = '$option->option_name'");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue