Skip to content
Snippets Groups Projects
Commit 67a77a6e authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge pull request #399 from Hamsteren/patch-1

Fix redirect bug in l.php for IE8
parents c0dc65bd 71c5a2f4
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ if (!$url || !Validator::is_url($url)) exit('Invalid url');
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="refresh" content="0;<?php echo $url; ?>"/>
<meta http-equiv="refresh" content="0;URL=<?php echo $url; ?>"/>
</head>
<body/>
</html>
......@@ -21,7 +21,7 @@ if (!$url || !Validator::is_url($url)) exit('Invalid url');
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="refresh" content="0;<?php echo $url; ?>"/>
<meta http-equiv="refresh" content="0; URL=<?php echo $url; ?>"/>
</head>
<body/>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment