From Bugzilla Helper: User-Agent: Mozilla/4.0 Description of problem: Array from html forms are twice submitted using POST method Version-Release number of selected component (if applicable): 2.0.40-11 Maybe the bug might be fixed in a newer version, but there is no newer rpm available... How reproducible: Always Steps to Reproduce: submit a form with array, e.g. <form action=phpinfo.php method=post> <input name=test[] value=123> <input name=test[] value=456> Actual Results: $_POST["test"] = array ( [0] = 123 [1] = 456 [2] = 123 [3] = 456 ) Expected Results: $_POST["test"] = array ( [0] = 123 [1] = 456 ) Additional info:
This can be solved by removing the AddType directive for .php. *** This bug has been marked as a duplicate of 82967 ***
Changed to 'CLOSED' state since 'RESOLVED' has been deprecated.