diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-14 22:30:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-14 22:30:09 +0000 |
commit | 6fc2070a22cda40d174db205847dca4c214eeea6 (patch) | |
tree | 84a96893aaea2ff4dad96404acf7b12e6fabfb1d /update.php | |
parent | 01e9b5a0f01e88e3c804cdef64676eebed56520b (diff) | |
download | brdo-6fc2070a22cda40d174db205847dca4c214eeea6.tar.gz brdo-6fc2070a22cda40d174db205847dca4c214eeea6.tar.bz2 |
Patch 5114 by Kjartan:
- Adds drupal_set_header() and drupal_get_headers().
- Cache now stores custom headers.
- Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head().
- Added RSS autodiscover links to node, blog and taxonomy pages.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 0ef7aef62..f4b07e769 100644 --- a/update.php +++ b/update.php @@ -65,7 +65,8 @@ $mysql_updates = array( "2003-12-03" => "update_73", "2003-12-06" => "update_74", "2004-01-06" => "update_75", - "2004-01-11" => "update_76" + "2004-01-11" => "update_76", + "2004-01-13" => "update_77" ); function update_32() { @@ -604,6 +605,10 @@ function update_76() { update_sql("ALTER TABLE {feed} ADD image longtext"); } +function update_77() { + update_sql("ALTER TABLE {cache} ADD headers text"); +} + /* ** System functions */ |