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
This commit is contained in:
Nils Adermann 2013-05-12 23:09:41 +02:00
commit a42693e66d
2 changed files with 2 additions and 2 deletions

View file

@ -2907,7 +2907,7 @@ function meta_refresh($time, $url, $disable_cd_check = false)
// For XHTML compatibility we change back & to & // For XHTML compatibility we change back & to &
$template->assign_vars(array( $template->assign_vars(array(
'META' => '<meta http-equiv="refresh" content="' . $time . ';url=' . $url . '" />') 'META' => '<meta http-equiv="refresh" content="' . $time . '; url=' . $url . '" />')
); );
} }

View file

@ -2065,7 +2065,7 @@ class install_convert extends module
// Because we should not rely on correct settings, we simply use the relative path here directly. // Because we should not rely on correct settings, we simply use the relative path here directly.
$template->assign_vars(array( $template->assign_vars(array(
'S_REFRESH' => true, 'S_REFRESH' => true,
'META' => '<meta http-equiv="refresh" content="5;url=' . $url . '" />') 'META' => '<meta http-equiv="refresh" content="5; url=' . $url . '" />')
); );
} }
} }