diff options
author | Filipp Lepalaan <filipp@mekanisti.fi> | 2009-11-17 09:49:44 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mekanisti.fi> | 2009-11-17 09:49:44 +0200 |
commit | a14477fd1140d09c3079b3477be265cc5e1410da (patch) | |
tree | 9affa0e48f341c317414be895552b6f436ba274a /App.php | |
parent | 6ce2a6c65c9c9eba1e7660d151b6a709ecfa625f (diff) | |
download | main-a14477fd1140d09c3079b3477be265cc5e1410da.tar.gz main-a14477fd1140d09c3079b3477be265cc5e1410da.tar.bz2 main-a14477fd1140d09c3079b3477be265cc5e1410da.zip |
More fixes
Diffstat (limited to 'App.php')
-rw-r--r-- | App.php | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -175,8 +175,12 @@ class App * @param string [$where] URL to redirect to * @return void */ - static function redirect($url) + static function redirect($url = null) { + if (!$url) { + // Is it smart to redirect back to the page which redirected here? + $url = $_SERVER['HTTP_REFERER']; + } header("HTTP/1.1 303 See Other"); header("Location: $url"); } |