summaryrefslogtreecommitdiff
path: root/database/updates.inc
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-04-27 22:03:20 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-04-27 22:03:20 +0000
commit546f5930a471af31b7c50a52e0a5a6088acb9b0e (patch)
tree95906a950f8590928c23c4b688c6bd5d8b4477f5 /database/updates.inc
parentca9293b3ee13390349521c83e9bb175d4c95009a (diff)
downloadbrdo-546f5930a471af31b7c50a52e0a5a6088acb9b0e.tar.gz
brdo-546f5930a471af31b7c50a52e0a5a6088acb9b0e.tar.bz2
#58953: Flat collapsed mode and newest first order broken
Diffstat (limited to 'database/updates.inc')
-rw-r--r--database/updates.inc10
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();
}