summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-12-24 10:51:25 +0000
committerDries Buytaert <dries@buytaert.net>2001-12-24 10:51:25 +0000
commitc5bb7c3eb21580a223f454036cd8a7ab5ffe7871 (patch)
treee663610b2b73467a1493e9949769331afab12097 /update.php
parent77decc550b078878f241f1e5ad6d34fd31e86ebf (diff)
downloadbrdo-c5bb7c3eb21580a223f454036cd8a7ab5ffe7871.tar.gz
brdo-c5bb7c3eb21580a223f454036cd8a7ab5ffe7871.tar.bz2
- Fixed a problem with the expiration of news items. Requires a SQL
update (update.php).
Diffstat (limited to 'update.php')
-rw-r--r--update.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/update.php b/update.php
index 8d26c2c5c..a49f4fe1d 100644
--- a/update.php
+++ b/update.php
@@ -39,6 +39,7 @@ $mysql_updates = array(
"2001-12-06" => "update_12",
"2001-12-09" => "update_13",
"2001-12-16" => "update_14",
+ "2001-12-24" => "update_15",
);
// Update functions
@@ -286,6 +287,10 @@ function update_14() {
);");
}
+function update_15() {
+ update_sql("ALTER TABLE feed DROP uncache;");
+}
+
// System functions
function update_sql($sql) {
global $edit;