diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-11-08 15:51:29 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-11-08 15:51:29 +0100 |
commit | 46a1de68a663fd7af1a0a08124738cecc84fd5c7 (patch) | |
tree | e172949e46eb15b6861c9b6945ce62f1d4ca13c0 /system/helpers/url_helper.php | |
parent | 3b3782a8e039f70379afd775a2155b8b1ae1334d (diff) | |
parent | 39f118c73d62510d3676ad1ece53c6fe2cc43f64 (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop
Diffstat (limited to 'system/helpers/url_helper.php')
-rwxr-xr-x | system/helpers/url_helper.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index bfed96c6e..5d907d00e 100755 --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php @@ -544,13 +544,19 @@ if ( ! function_exists('url_title')) */ if ( ! function_exists('redirect')) { - function redirect($uri = '', $method = 'location', $http_response_code = 302) + function redirect($uri = '', $method = 'auto', $http_response_code = 302) { if ( ! preg_match('#^https?://#i', $uri)) { $uri = site_url($uri); } + // IIS environment likely? Use 'refresh' for better compatibility + if (DIRECTORY_SEPARATOR != '/' && $method == 'auto') + { + $method = 'refresh'; + } + switch($method) { case 'refresh' : header("Refresh:0;url=".$uri); |