From 6fc2070a22cda40d174db205847dca4c214eeea6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 14 Jan 2004 22:30:09 +0000 Subject: 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. --- update.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'update.php') 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 */ -- cgit v1.2.3