summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorM <m@lfurio.us>2015-12-06 03:10:13 -0500
committerM <m@lfurio.us>2015-12-06 03:10:13 -0500
commit366e538edd1a63143ddc229679d3d8be285a9ec3 (patch)
treec2fee8272b9a81960612cb79f56a036795bb0880 /app
parent94b39ff32f6cc9566de651f35994d877634d7317 (diff)
downloadscrott-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 'app')
-rw-r--r--app/class/framework.class.php2
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;
}
}