From 541094b4bcb38a9a3ca11826f51325d87a95712e Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 6 Aug 2010 15:35:32 -0600 Subject: [PATCH] Don't encode ampersands in javascript output. --- framework/Core/lib/Horde/Core/Ajax/Imple.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Core/lib/Horde/Core/Ajax/Imple.php b/framework/Core/lib/Horde/Core/Ajax/Imple.php index 71a864a22..360ffd556 100644 --- a/framework/Core/lib/Horde/Core/Ajax/Imple.php +++ b/framework/Core/lib/Horde/Core/Ajax/Imple.php @@ -67,7 +67,7 @@ abstract class Horde_Core_Ajax_Imple } $url = Horde::getServiceLink('imple'); - return Horde::url($url->url . '?' . $qstring, $full); + return Horde::url($url->url . '?' . $qstring, $full)->setRaw(true); } /** -- 2.11.0