diff options
| author | M <m@lfurio.us> | 2015-12-06 03:10:13 -0500 | 
|---|---|---|
| committer | M <m@lfurio.us> | 2015-12-06 03:10:13 -0500 | 
| commit | 366e538edd1a63143ddc229679d3d8be285a9ec3 (patch) | |
| tree | c2fee8272b9a81960612cb79f56a036795bb0880 | |
| parent | 94b39ff32f6cc9566de651f35994d877634d7317 (diff) | |
| download | scrott-366e538edd1a63143ddc229679d3d8be285a9ec3.tar.gz scrott-366e538edd1a63143ddc229679d3d8be285a9ec3.zip | |
* Bug fix in framework class - redirectTo function -- http_redirect function I was using is part of an extension for PHP and therefore, non-standard
Diffstat (limited to '')
| -rw-r--r-- | app/class/framework.class.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/class/framework.class.php b/app/class/framework.class.php index 151ca8e..7244220 100644 --- a/app/class/framework.class.php +++ b/app/class/framework.class.php @@ -39,7 +39,7 @@ abstract class Framework       */      function redirectTo($url)      { -        http_redirect($url); +        header("Location: " . $url);          exit;      }  } | 
