projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
126b9f9
)
Use setRaw() instead of str_replace hack.
author
Jan Schneider
<jan@horde.org>
Mon, 31 May 2010 15:02:46 +0000
(17:02 +0200)
committer
Jan Schneider
<jan@horde.org>
Mon, 31 May 2010 16:22:32 +0000
(18:22 +0200)
framework/Ajax/lib/Horde/Ajax/Application/Base.php
patch
|
blob
|
history
diff --git
a/framework/Ajax/lib/Horde/Ajax/Application/Base.php
b/framework/Ajax/lib/Horde/Ajax/Application/Base.php
index
f953604
..
11b6379
100644
(file)
--- 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;
}