diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-11-13 11:21:47 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-11-13 11:30:41 +0100 |
commit | 0aed2816761601ae902159665fdf58932209f772 (patch) | |
tree | 3afdaf1057308aa18cd5d3419e98995595cd05ba | |
parent | 0a7db81426e966f9c44fcc85338615e1bb3c6f34 (diff) | |
download | forums-0aed2816761601ae902159665fdf58932209f772.tar forums-0aed2816761601ae902159665fdf58932209f772.tar.gz forums-0aed2816761601ae902159665fdf58932209f772.tar.bz2 forums-0aed2816761601ae902159665fdf58932209f772.tar.xz forums-0aed2816761601ae902159665fdf58932209f772.zip |
[ticket/11997] Fix missing global
PHPBB3-11997
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index c937b8f562..a6c03098c2 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2645,7 +2645,7 @@ function generate_board_url($without_script_path = false) */ function redirect($url, $return = false, $disable_cd_check = false) { - global $db, $cache, $config, $user, $phpbb_root_path, $phpbb_filesystem; + global $db, $cache, $config, $user, $phpbb_root_path, $phpbb_filesystem, $phpbb_path_helper; $failover_flag = false; |