aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 5e1bfedf38..b0db9ad5b2 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -18,8 +18,8 @@ if (!defined('IN_PHPBB'))
exit;
}
-// Init Framework
-require_once PHPBB_ROOT_PATH . 'includes/core/bootstrap.' . PHP_EXT;
+// Init Framework - do not change to require_once ;)
+require PHPBB_ROOT_PATH . 'includes/core/bootstrap.' . PHP_EXT;
// Run through remaining Framework states
if (defined('PHPBB_CONFIG_MISSING') || !defined('PHPBB_INSTALLED'))