From: Jan Schneider Date: Mon, 31 May 2010 15:02:46 +0000 (+0200) Subject: Use setRaw() instead of str_replace hack. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=78ce5d5d6b0b8d727604f9c8a6717a6a49893d47;p=horde.git Use setRaw() instead of str_replace hack. --- diff --git a/framework/Ajax/lib/Horde/Ajax/Application/Base.php b/framework/Ajax/lib/Horde/Ajax/Application/Base.php index f953604ce..11b6379ea 100644 --- a/framework/Ajax/lib/Horde/Ajax/Application/Base.php +++ b/framework/Ajax/lib/Horde/Ajax/Application/Base.php @@ -122,7 +122,7 @@ abstract class Horde_Ajax_Application_Base */ public function logOut() { - Horde::redirect(str_replace('&', '&', Horde::getServiceLink('logout', $this->_app))); + Horde::redirect(Horde::getServiceLink('logout', $this->_app)->setRaw(true)); exit; }