Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -69,6 +69,7 @@ |
70 | 70 | * Some deprecated presentational html attributes will now be automatically converted to css. |
71 | 71 | * (bug 31233) New OutputPage::addJsConfigVars() method to make the output page specific |
72 | 72 | mw.config map extendable. |
| 73 | +* (bug 31297) Add support for namespaces in Special:RecentChanges subpage filter syntax. |
73 | 74 | |
74 | 75 | === Bug fixes in 1.19 === |
75 | 76 | * $wgUploadNavigationUrl should be used for file redlinks if |
Index: trunk/phase3/includes/specials/SpecialRecentchanges.php |
— | — | @@ -232,6 +232,9 @@ |
233 | 233 | if( preg_match( '/^days=(\d+)$/', $bit, $m ) ) { |
234 | 234 | $opts['days'] = $m[1]; |
235 | 235 | } |
| 236 | + if( preg_match( '/^namespace=(\d+)$/', $bit, $m ) ) { |
| 237 | + $opts['namespace'] = $m[1]; |
| 238 | + } |
236 | 239 | } |
237 | 240 | } |
238 | 241 | |