aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
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'))
{