diff options
Diffstat (limited to 'database/updates.inc')
-rw-r--r-- | database/updates.inc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/database/updates.inc b/database/updates.inc index f3b3eb863..5d65503cd 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1689,15 +1689,7 @@ function system_update_173() { } function system_update_174() { - // update comments system variables on upgrade. - $mode = variable_get('comment_default_mode', 4); - if ($mode > 0) { - variable_set('comment_default_mode', $mode - 1); - } - $order = variable_get('comment_default_order', 1); - if ($order > 0) { - variable_set('comment_default_order', $order - 1); - } + // This update (update comments system variables on upgrade) has been removed. return array(); } |