summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-11 15:05:21 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-11 15:05:21 +0000
commitee305ae144d074692f2737eed8e38ec32f20e98e (patch)
treee98868c67409639834ee9e6f581280206a4fb678 /update.php
parent93dd644541a5d893321e13f45132e4ffb2528763 (diff)
downloadbrdo-ee305ae144d074692f2737eed8e38ec32f20e98e.tar.gz
brdo-ee305ae144d074692f2737eed8e38ec32f20e98e.tar.bz2
Round 3 of aggregator improvements:
- Added support for new tags: + Optinal feed image: <image> tag. + Dublin core dates: <dc:date> <dcterms:created>, <dcterms:issued>, <dcterms:modified>. - Usability improvements: + On the administration page, made the feed/bundle titles link to the feeds/bundles' pages. On the feed/bundle's page, made the 'Last updated' field link to the administration page. + Moved the 'syndication' menu one level down. - Updated some content sensitive help. - Further improved themeability. - Fixed some invalid HTML.
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 9b4c0d7a7..0ef7aef62 100644
--- a/update.php
+++ b/update.php
@@ -64,7 +64,8 @@ $mysql_updates = array(
"2003-11-27" => "update_72",
"2003-12-03" => "update_73",
"2003-12-06" => "update_74",
- "2004-01-06" => "update_75"
+ "2004-01-06" => "update_75",
+ "2004-01-11" => "update_76"
);
function update_32() {
@@ -599,6 +600,10 @@ function update_75() {
update_sql("UPDATE {system} SET filename = 'modules/aggregator.module', name = 'aggregator' WHERE filename = 'modules/import.module'");
}
+function update_76() {
+ update_sql("ALTER TABLE {feed} ADD image longtext");
+}
+
/*
** System functions
*/