Don't double encode ampersands
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 7 Oct 2009 03:21:09 +0000 (21:21 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 7 Oct 2009 03:21:09 +0000 (21:21 -0600)
framework/Core/lib/Horde/Help.php

index 7873f51..c029177 100644 (file)
@@ -183,7 +183,7 @@ class Horde_Help
 
         $url = Horde::url($GLOBALS['registry']->get('webroot', 'horde') . '/services/help/', true);
         $url = Horde_Util::addParameter($url, array('module' => $module,
-                                                    'topic' => $topic));
+                                                    'topic' => $topic), null, false);
 
         return Horde::link($url, _("Help"), 'helplink', 'hordehelpwin', Horde::popupJs($url, array('urlencode' => true)) . 'return false;') .
             Horde::img('help.png', _("Help"), 'width="16" height="16"', $GLOBALS['registry']->getImageDir('horde')) . '</a>';