aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-02-21 01:51:46 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-02-21 01:51:46 +0000
commit0101c669cc2cf4efa0a6246e5304463b66d83c35 (patch)
treeb604f64efaea888466bfefaeb98ac9934d13d76c /phpBB/common.php
parent389095086db061f31cb9dde6003f44298821ab93 (diff)
downloadforums-0101c669cc2cf4efa0a6246e5304463b66d83c35.tar
forums-0101c669cc2cf4efa0a6246e5304463b66d83c35.tar.gz
forums-0101c669cc2cf4efa0a6246e5304463b66d83c35.tar.bz2
forums-0101c669cc2cf4efa0a6246e5304463b66d83c35.tar.xz
forums-0101c669cc2cf4efa0a6246e5304463b66d83c35.zip
Renamed some functions in cache manager, now unloads vars properly before the page is output.
git-svn-id: file:///svn/phpbb/trunk@3479 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 7a6b55c11a..f9bf10da9e 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -145,10 +145,12 @@ $user = new user();
$auth = new auth();
// Need these here so instantiate them now
-$cache = new acm();// Experimental cache manager
+$cache = new acm();
$template = new template();
$db = new sql_db($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false);
+// 20030218 Ashe: $dbport is not set by the installer
+
// Grab global variables, re-cache if necessary
if ($config = $cache->get('config'))
{