|
Mantis - Quercus
|
|||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 1732 | minor | always | 05-13-07 09:31 | 05-14-07 20:05 | |
|
|
|||||
| Reporter: | nagashima | Platform: | |||
| Assigned To: | nam | OS: | |||
| Priority: | normal | OS Version: | |||
| Status: | closed | Product Version: | 3.1.1 | ||
| Product Build: | Resolution: | fixed | |||
| Projection: | none | ||||
| ETA: | none | Fixed in Version: | 3.1.2 | ||
|
|
|||||
| Summary: | 0001732: $_POST was overwrited by querystring | ||||
| Description: |
run this script -------------------------------- <html> <body> <form action="?value1=get_value1" method="post"> <input type="hidden" name="value1" value="post_value1"> <input type="hidden" name="value2" value="post_value2"> <input type="submit"> </form> <?php echo "get_value1 = " . $_GET["value1"]." \n"; echo "post_value1 = " . $_POST["value1"]." \n"; echo "post_value2 = " . $_POST["value2"]." \n"; ?> </body> </html> -------------------------------- php output is -------------------------------- get_value1 = get_value1 post_value1 = post_value1 post_value2 = post_value2 -------------------------------- but quercus output is -------------------------------- get_value1 = get_value1 post_value1 = get_value1 post_value2 = post_value2 -------------------------------- |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Relationships | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||