aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-05-12 23:09:41 +0200
committerNils Adermann <naderman@naderman.de>2013-05-12 23:09:41 +0200
commita42693e66d2dc6a8d7998afccabe3eedfcf30613 (patch)
tree1c6e75e6fce7dc10ed53c601185c85faae3c51b4 /phpBB/includes/functions.php
parentfe13b89dd4bd6d808d81c903e66fe869ccd43050 (diff)
parent45e014d35d755363224a8a84dd9bb51299a6f107 (diff)
downloadforums-a42693e66d2dc6a8d7998afccabe3eedfcf30613.tar
forums-a42693e66d2dc6a8d7998afccabe3eedfcf30613.tar.gz
forums-a42693e66d2dc6a8d7998afccabe3eedfcf30613.tar.bz2
forums-a42693e66d2dc6a8d7998afccabe3eedfcf30613.tar.xz
forums-a42693e66d2dc6a8d7998afccabe3eedfcf30613.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/11105] Added spaces between ; and "url=" to adhere to w3c conventions. Conflicts: phpBB/includes/functions.php
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 0dc2f314f1..41a3de31f2 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2907,7 +2907,7 @@ function meta_refresh($time, $url, $disable_cd_check = false)
// For XHTML compatibility we change back & to &amp;
$template->assign_vars(array(
- 'META' => '<meta http-equiv="refresh" content="' . $time . ';url=' . $url . '" />')
+ 'META' => '<meta http-equiv="refresh" content="' . $time . '; url=' . $url . '" />')
);
}