diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-28 20:45:42 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-28 20:45:42 +0000 |
| commit | 043d45c35743c8b00940ef208f49faeb035007a3 (patch) | |
| tree | d2afd45f945d6e38f7f9afc72db3817cbf343eb5 /phpBB/admin/pagestart.php | |
| parent | 4ce762b83b61541e860e2244d459cc4be1a73640 (diff) | |
| download | forums-043d45c35743c8b00940ef208f49faeb035007a3.tar forums-043d45c35743c8b00940ef208f49faeb035007a3.tar.gz forums-043d45c35743c8b00940ef208f49faeb035007a3.tar.bz2 forums-043d45c35743c8b00940ef208f49faeb035007a3.tar.xz forums-043d45c35743c8b00940ef208f49faeb035007a3.zip | |
Missing cache save from page_footer() + unecessary cache update for word censors
git-svn-id: file:///svn/phpbb/trunk@3395 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/pagestart.php')
| -rw-r--r-- | phpBB/admin/pagestart.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/admin/pagestart.php b/phpBB/admin/pagestart.php index 9460f86582..e2096baf4f 100644 --- a/phpBB/admin/pagestart.php +++ b/phpBB/admin/pagestart.php @@ -101,7 +101,7 @@ td.cat { background-image: url('images/cellpic1.gif') } function page_footer($copyright_html = true) { - global $config, $db, $phpEx; + global $cache, $config, $db, $phpEx; // Close our DB connection. $db->sql_close(); @@ -127,6 +127,11 @@ function page_footer($copyright_html = true) } + if (!empty($cache)) + { + $cache->save_cache(); + } + exit; } |
