Index: trunk/phase3/CREDITS |
— | — | @@ -57,6 +57,7 @@ |
58 | 58 | == Patch Contributors == |
59 | 59 | * Agbad |
60 | 60 | * Brad Jorsch |
| 61 | +* Brent G |
61 | 62 | * Daniel Arnold |
62 | 63 | * Danny B. |
63 | 64 | * FunPika |
Index: trunk/phase3/includes/specials/SpecialNewpages.php |
— | — | @@ -70,6 +70,8 @@ |
71 | 71 | // PG offsets not just digits! |
72 | 72 | if ( preg_match( '/^offset=([^=]+)$/', $bit, $m ) ) |
73 | 73 | $this->opts->setValue( 'offset', intval($m[1]) ); |
| 74 | + if ( preg_match( '/^username=(.*)$/', $bit, $m ) ) |
| 75 | + $this->opts->setValue( 'username', $m[1] ); |
74 | 76 | if ( preg_match( '/^namespace=(.*)$/', $bit, $m ) ) { |
75 | 77 | $ns = $wgLang->getNsIndex( $m[1] ); |
76 | 78 | if( $ns !== false ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -260,6 +260,7 @@ |
261 | 261 | * Make "Did you mean" search feature more noticeable |
262 | 262 | * Added "Advanced search" link to the search form |
263 | 263 | * (bug 2242) Add an expiry time to temporary passwords |
| 264 | +* (bug 16720) Transcluded Special:NewPages processes "/username=" |
264 | 265 | |
265 | 266 | === Bug fixes in 1.14 === |
266 | 267 | |