diff options
| author | Nils Adermann <naderman@naderman.de> | 2013-05-12 14:05:53 -0700 | 
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2013-05-12 14:05:53 -0700 | 
| commit | 45e014d35d755363224a8a84dd9bb51299a6f107 (patch) | |
| tree | f9de2b53d4c25b8b4d48ac74b9fcf8988981ee7d /phpBB/includes | |
| parent | b3479869232fd4f2e6c3f43e0d6e76ee08ab7d23 (diff) | |
| parent | d680aac7c5662223f1f491b244456220450cac23 (diff) | |
| download | forums-45e014d35d755363224a8a84dd9bb51299a6f107.tar forums-45e014d35d755363224a8a84dd9bb51299a6f107.tar.gz forums-45e014d35d755363224a8a84dd9bb51299a6f107.tar.bz2 forums-45e014d35d755363224a8a84dd9bb51299a6f107.tar.xz forums-45e014d35d755363224a8a84dd9bb51299a6f107.zip  | |
Merge pull request #1403 from bantu/ticket/11105
[ticket/11105] Add mandatory space to content part of meta http-equiv=re...
Diffstat (limited to 'phpBB/includes')
| -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 98a1dab722..cf676a3351 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2740,7 +2740,7 @@ function meta_refresh($time, $url, $disable_cd_check = false)  	// For XHTML compatibility we change back & to &  	$template->assign_vars(array( -		'META' => '<meta http-equiv="refresh" content="' . $time . ';url=' . $url . '" />') +		'META' => '<meta http-equiv="refresh" content="' . $time . '; url=' . $url . '" />')  	);  	return $url;  | 
