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:
donncha 2004-09-17 13:05:06 +00:00
parent c83efe02ea
commit b28a9e34b0
1 changed files with 11 additions and 11 deletions

View File

@ -58,7 +58,7 @@ case 'update':
// HACK
// 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) {
foreach ($options as $option) {
// should we even bother checking?
@ -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'");
}