summaryrefslogtreecommitdiff
path: root/database/database.pgsql
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-14 22:30:09 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-14 22:30:09 +0000
commit6fc2070a22cda40d174db205847dca4c214eeea6 (patch)
tree84a96893aaea2ff4dad96404acf7b12e6fabfb1d /database/database.pgsql
parent01e9b5a0f01e88e3c804cdef64676eebed56520b (diff)
downloadbrdo-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 'database/database.pgsql')
-rw-r--r--database/database.pgsql1
1 files changed, 1 insertions, 0 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index a125d4ca1..2cc7feaf3 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -106,6 +106,7 @@ CREATE TABLE cache (
data text default '',
expire integer NOT NULL default '0',
created integer NOT NULL default '0',
+ headers text default '',
PRIMARY KEY (cid)
);