summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-08-16 05:49:45 +0000
committerDries Buytaert <dries@buytaert.net>2003-08-16 05:49:45 +0000
commit8a2d5bede9a25af940fc5be248e81911fe056328 (patch)
tree97b95c0877028acd395cbf1605a148158b917265 /update.php
parentdb8c3edca566f38609175898dfd0ccba4b7cd07f (diff)
downloadbrdo-8a2d5bede9a25af940fc5be248e81911fe056328.tar.gz
brdo-8a2d5bede9a25af940fc5be248e81911fe056328.tar.bz2
- Rewrote handling of forum icons and added default icons made by Steven
Wittens. - Renamed some column titles in the forum module as per Moshe's suggestion. - Introduced a 'more-link' class to position the 'more' links. Removed hard-coded markup from the modules. - Fixed bug in import module: the theme functions called a non-existing function.
Diffstat (limited to 'update.php')
-rw-r--r--update.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php
index 5fd84c5db..a382668e1 100644
--- a/update.php
+++ b/update.php
@@ -40,7 +40,8 @@ $mysql_updates = array(
"2003-06-04" => "update_56",
"2003-06-08" => "update_57",
"2003-06-08: first update since Drupal 4.2.0 release" => "update_58",
- "2003-08-05" => "update_59"
+ "2003-08-05" => "update_59",
+ "2003-08-15" => "update_60"
);
function update_32() {
@@ -326,6 +327,10 @@ function _update_thread_structure($comments, $pid, $depth, $structure) {
return $structure;
}
+function update_60() {
+ update_sql("ALTER TABLE forum DROP icon");
+}
+
function _update_next_thread($structure, $parent) {
do {
$val++;