[Chameleon-dev] [Bug 360] New: [Chameleon] Query Widget URL parse routine malforms Query String

bugzilla-daemon at www.maptools.org bugzilla-daemon at www.maptools.org
Tue Apr 20 14:20:09 EDT 2004


http://www.maptools.org/bugzilla/show_bug.cgi?id=360

           Summary: [Chameleon] Query Widget URL parse routine malforms
                    Query String
           Product: Chameleon
           Version: 1.1
          Platform: PC
        OS/Version: Windows NT
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Widget
        AssignedTo: chameleon-dev at lists.maptools.org
        ReportedBy: jfournier at dmsolutions.ca


Query.widget.php

The Query widget function setURLQueryParam( $szURL, $szValue, $szParam ) *can*
result in a malformed URL under certain curcumstances (eg, spaces in param
values).  The following fix resolves the issue:

original line 763:  $szQuery .= $szSep.$key."=".$value;
amended line 763:  $szQuery .= $szSep.$key."=".urlencode( $value );



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


More information about the Chameleon-dev mailing list