summaryrefslogtreecommitdiffstats
path: root/app/class/framework.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/class/framework.class.php')
-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;
}
}