diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-07-08 19:22:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-07-08 19:22:48 +0000 |
commit | a0671877111ade392e699588c2efcbeaa139354b (patch) | |
tree | 57b2b6c00448c758c1334811ec9abf2094be2a7d /database | |
parent | 56fa37cb8ed145e83a639fb45ac96fb399cad1b0 (diff) | |
download | brdo-a0671877111ade392e699588c2efcbeaa139354b.tar.gz brdo-a0671877111ade392e699588c2efcbeaa139354b.tar.bz2 |
- Patch #8509 by Killes and Steven: added support for sending compressed
pages. Useful to reduce your site's bandwidth.
Diffstat (limited to 'database')
-rw-r--r-- | database/updates.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc index 1f200ed55..172c527f7 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -62,7 +62,8 @@ $sql_updates = array( "2004-06-11" => "update_88", "2004-06-18" => "update_89", "2004-06-27" => "update_90", - "2004-06-30" => "update_91" + "2004-06-30" => "update_91", + "2004-07-07" => "update_92" ); function update_32() { @@ -1142,6 +1143,10 @@ function update_91() { return $ret; } +function update_92() { + $ret[] = update_sql("DELETE FROM {cache}"); +} + function update_sql($sql) { $edit = $_POST["edit"]; $result = db_query($sql); |