summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-03-03 20:02:07 +0000
committerDries Buytaert <dries@buytaert.net>2005-03-03 20:02:07 +0000
commit749f15e7c0b55b12e1b95ad3a46e312d0e6c9c38 (patch)
tree3075d6c62fe4f9c2c2f0ece456f2a447dcdcd2cc /database
parent03374fc0f6c97aa576dc5563fdb6f5b2d99e6b40 (diff)
downloadbrdo-749f15e7c0b55b12e1b95ad3a46e312d0e6c9c38.tar.gz
brdo-749f15e7c0b55b12e1b95ad3a46e312d0e6c9c38.tar.bz2
- Modified patch #18328 by Neil: currently the two forum topic blocks share a number of topics in block setting. This is a bit confusing since configuring one blockshould not affect another block. Fixed some indentation as well.
Diffstat (limited to 'database')
-rw-r--r--database/updates.inc9
1 files changed, 8 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc
index d5b9ed5c1..fc976c817 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -101,7 +101,8 @@ $sql_updates = array(
"2005-01-27" => "update_122",
"2005-01-28" => "update_123",
"2005-02-11" => "update_124",
- "2005-02-23" => "update_125"
+ "2005-02-23" => "update_125",
+ "2005-03-03" => "update_126"
);
function update_32() {
@@ -2303,6 +2304,12 @@ function update_125() {
return $ret;
}
+
+function update_126() {
+ $ret[] = update_sql("DELETE FROM {variable} WHERE name LIKE 'forum_block_%'");
+ return $ret;
+}
+
function update_sql($sql) {
$edit = $_POST["edit"];
$result = db_query($sql);