diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-13 23:52:40 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-13 23:52:40 +0000 |
commit | a149659f33f032c0cebc278689349d0904f8f998 (patch) | |
tree | 4f0efde4cf938660d1d01843d583f1ec8119ec75 /core | |
parent | d6214a974e0ce0aab0e5bdc83f101ca2cfdc7e98 (diff) |
Fix a bad redirect.
Diffstat (limited to 'core')
-rw-r--r-- | core/controllers/l10n_client.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/l10n_client.php b/core/controllers/l10n_client.php index 08607bf8..17520051 100644 --- a/core/controllers/l10n_client.php +++ b/core/controllers/l10n_client.php @@ -58,12 +58,12 @@ class L10n_Client_Controller extends Controller { public function toggle_l10n_mode() { access::verify_csrf(); - + $session = Session::instance(); $session->set("l10n_mode", !$session->get("l10n_mode", false)); - url::redirect(url::site("albums/1")); + url::redirect("albums/1"); } private static function _l10n_client_form() { |