aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2011-02-24 23:44:58 +0100
committerIgor Wiedler <igor@wiedler.ch>2011-02-24 23:44:58 +0100
commit5a5560d2004bbf93a24d05353fe6f765311a991a (patch)
treeab0c06bf5f01581ec9ea17401c2b7c785ec9ac81 /phpBB/develop
parent5e2bbdb22b82102c9bb2a1f040ad2755e545941e (diff)
parentc4b3d3a0896129a6dc2b6f97e3d97c098aa38667 (diff)
downloadforums-5a5560d2004bbf93a24d05353fe6f765311a991a.tar
forums-5a5560d2004bbf93a24d05353fe6f765311a991a.tar.gz
forums-5a5560d2004bbf93a24d05353fe6f765311a991a.tar.bz2
forums-5a5560d2004bbf93a24d05353fe6f765311a991a.tar.xz
forums-5a5560d2004bbf93a24d05353fe6f765311a991a.zip
Merge branch 'ticket/p/10058' into develop-olympus
* ticket/p/10058: [ticket/10058] Initialize $phpbb_root_path in mysql_upgrader.php.
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/mysql_upgrader.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/develop/mysql_upgrader.php b/phpBB/develop/mysql_upgrader.php
index 5a7034b45c..70c8173a32 100644
--- a/phpBB/develop/mysql_upgrader.php
+++ b/phpBB/develop/mysql_upgrader.php
@@ -21,6 +21,7 @@
die("Please read the first lines of this script for instructions on how to enable it");
define('IN_PHPBB', true);
+$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);