Mantis - Quercus
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
1956 | minor | always | 08-20-07 19:57 | 09-04-07 13:08 | |
|
|||||
Reporter: | websurfer2 | Platform: | |||
Assigned To: | nam | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 3.1.3 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 3.1.3 | ||
|
|||||
Summary: | 0001956: Form field with quoted string is wrongly escaped | ||||
Description: |
Quercus appears to not process quoted string from a http request correctly. When the submitted field is quoted such as ("test"), it will processed as (\"test\") in the $_REQUEST variable. While exactly the same script behaves normally in standard php engine. Pasted are the html page used to submit the request and the php script show the processed request. t.html // used to submit the request <html> <head><title>test Page</title></head> <body> <h1> test</h1> <form method = post action="t.php"> <input type =text name="QUERY" size=20> <input type=submit name="submit" value=submit> </form> </body> </html> t.php //used to show the request <?php $query = $_REQUEST['QUERY']; echo $query; ?> |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|