Index: trunk/phase3/includes/WebRequest.php |
— | — | @@ -535,7 +535,7 @@ |
536 | 536 | |
537 | 537 | $retVal = array(); |
538 | 538 | foreach ( $names as $name ) { |
539 | | - $value = $this->getVal( $name ); |
| 539 | + $value = $this->getGPCVal( $this->data, $name ); |
540 | 540 | if ( !is_null( $value ) ) { |
541 | 541 | $retVal[$name] = $value; |
542 | 542 | } |
Index: trunk/phase3/RELEASE-NOTES-1.20 |
— | — | @@ -45,6 +45,8 @@ |
46 | 46 | * (bug 34929) Show the correct diff when a section edit is rejected by the spam |
47 | 47 | filter |
48 | 48 | * (bug 15816) Add a switch for SETting the search_path (Postgres) |
| 49 | +* (bug 34521) Returning to the previous page after logging in loses any array- |
| 50 | + valued parameters in the query string |
49 | 51 | |
50 | 52 | === API changes in 1.20 === |
51 | 53 | * (bug 34316) Add ability to retrieve maximum upload size from MediaWiki API. |