Commit 52605ca6da9b64640e11e5960981644475be0da8

Authored by Neil Blakey-Milner
1 parent 3723a5a9

If we've parsed a query string, we get the encoded version, not the

decoded version.  Don't re-encode the items.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5211 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 1 additions and 1 deletions
lib/util/ktutil.inc
... ... @@ -476,7 +476,7 @@ class KTUtil {
476 476  
477 477 $aQs = $oUrl->_parseRawQuerystring($qs);
478 478 foreach ($aQs as $k => $v) {
479   - $oUrl->addQueryString($k, $v);
  479 + $oUrl->addQueryString($k, $v, true);
480 480 }
481 481 return $oUrl->getUrl();
482 482 }
... ...