aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-07-14 08:20:14 -0700
committerJoas Schilling <nickvergessen@gmx.de>2013-07-14 08:20:14 -0700
commitfa3cdb6bf2cfdca9c26168bd258752718bc8a43f (patch)
treeb3576fc17448f058122d52a9540e0d54beaac4f9 /phpBB/install/index.php
parent51ab2c710e91d98bb182dded1e9d5462451151e8 (diff)
parente6e2a50062eca8b640822b8f616ea4bb23b23566 (diff)
downloadforums-fa3cdb6bf2cfdca9c26168bd258752718bc8a43f.tar
forums-fa3cdb6bf2cfdca9c26168bd258752718bc8a43f.tar.gz
forums-fa3cdb6bf2cfdca9c26168bd258752718bc8a43f.tar.bz2
forums-fa3cdb6bf2cfdca9c26168bd258752718bc8a43f.tar.xz
forums-fa3cdb6bf2cfdca9c26168bd258752718bc8a43f.zip
Merge pull request #7 from igorw/ticket/11574
[ticket/11574] Fix various path issues in the updater
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r--phpBB/install/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 4051a5a08b..055fb72d7c 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -28,7 +28,7 @@ if (version_compare(PHP_VERSION, '5.3.3') < 0)
function phpbb_require_updated($path, $optional = false)
{
- global $phpbb_root_path;
+ global $phpbb_root_path, $table_prefix;
$new_path = $phpbb_root_path . 'install/update/new/' . $path;
$old_path = $phpbb_root_path . $path;