aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_convert.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-02-09 14:24:34 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-02-09 14:24:34 +0000
commit7216ffe8be85a58eedb4f1e7fe2278a89110be9d (patch)
tree0991b1d26b268f0a97a54cdea6edad9c0708daab /phpBB/install/install_convert.php
parent56a93bdfdddde618fe826c23c9151086f9540860 (diff)
downloadforums-7216ffe8be85a58eedb4f1e7fe2278a89110be9d.tar
forums-7216ffe8be85a58eedb4f1e7fe2278a89110be9d.tar.gz
forums-7216ffe8be85a58eedb4f1e7fe2278a89110be9d.tar.bz2
forums-7216ffe8be85a58eedb4f1e7fe2278a89110be9d.tar.xz
forums-7216ffe8be85a58eedb4f1e7fe2278a89110be9d.zip
some fixes to be committed.
git-svn-id: file:///svn/phpbb/trunk@6975 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_convert.php')
-rw-r--r--phpBB/install/install_convert.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php
index fbca8913c1..4636bbeecc 100644
--- a/phpBB/install/install_convert.php
+++ b/phpBB/install/install_convert.php
@@ -1845,8 +1845,11 @@ class install_convert extends module
if ($convert->options['refresh'])
{
- $template->assign_var('S_REFRESH', true);
- meta_refresh(5, $url);
+ // Because we should not rely on correct settings, we simply use the relative path here directly.
+ $template->assign_vars(array(
+ 'S_REFRESH' => true,
+ 'META' => '<meta http-equiv="refresh" content="5;url=' . $url . '" />')
+ );
}
}