Index: branches/REL1_3/phase3/RELEASE-NOTES |
— | — | @@ -3,7 +3,12 @@ |
4 | 4 | Security reminder: MediaWiki does not require PHP's register_globals |
5 | 5 | setting since version 1.2.0. If you have it on, turn it *off* if you can. |
6 | 6 | |
| 7 | +== Version 1.3.2, 2004-??-?? == |
7 | 8 | |
| 9 | +Changes from 1.3.1: |
| 10 | +* Fix namespaced page creation links when no go match |
| 11 | + |
| 12 | + |
8 | 13 | == Version 1.3.1, 2004-08-14 == |
9 | 14 | |
10 | 15 | Changes from 1.3.0: |
Index: branches/REL1_3/phase3/includes/SearchEngine.php |
— | — | @@ -478,7 +478,7 @@ |
479 | 479 | } |
480 | 480 | |
481 | 481 | # No match, generate an edit URL |
482 | | - $t = Title::newFromText( $this->mUsertext ); |
| 482 | + $t = Title::newFromText( $wgRequest->getText( "search" ) ); |
483 | 483 | |
484 | 484 | # If the feature is enabled, go straight to the edit page |
485 | 485 | if ( $wgGoToEdit ) { |