Index: trunk/phase3/CREDITS |
— | — | @@ -131,6 +131,7 @@ |
132 | 132 | * Michael Walsh |
133 | 133 | * Mike Horvath |
134 | 134 | * Mormegil |
| 135 | +* MrBlueSky |
135 | 136 | * MrPete |
136 | 137 | * MZMcBride |
137 | 138 | * mybugs.mail |
Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -100,7 +100,7 @@ |
101 | 101 | $this->opts['namespace'] = ''; |
102 | 102 | } |
103 | 103 | |
104 | | - $this->opts['tagFilter'] = (string) $request->getVal( 'tagFilter' ); |
| 104 | + $this->opts['tagfilter'] = (string) $request->getVal( 'tagfilter' ); |
105 | 105 | |
106 | 106 | // Allows reverts to have the bot flag in recent changes. It is just here to |
107 | 107 | // be passed in the form at the top of the page |
— | — | @@ -133,8 +133,8 @@ |
134 | 134 | if ( $this->opts['deletedOnly'] ) { |
135 | 135 | $apiParams['deletedonly'] = true; |
136 | 136 | } |
137 | | - if ( $this->opts['tagFilter'] !== '' ) { |
138 | | - $apiParams['tagfilter'] = $this->opts['tagFilter']; |
| 137 | + if ( $this->opts['tagfilter'] !== '' ) { |
| 138 | + $apiParams['tagfilter'] = $this->opts['tagfilter']; |
139 | 139 | } |
140 | 140 | if ( $this->opts['namespace'] !== '' ) { |
141 | 141 | $apiParams['namespace'] = $this->opts['namespace']; |
— | — | @@ -369,8 +369,8 @@ |
370 | 370 | $this->opts['target'] = ''; |
371 | 371 | } |
372 | 372 | |
373 | | - if( !isset( $this->opts['tagFilter'] ) ) { |
374 | | - $this->opts['tagFilter'] = ''; |
| 373 | + if( !isset( $this->opts['tagfilter'] ) ) { |
| 374 | + $this->opts['tagfilter'] = ''; |
375 | 375 | } |
376 | 376 | |
377 | 377 | if( !isset( $this->opts['topOnly'] ) ) { |
— | — | @@ -388,7 +388,7 @@ |
389 | 389 | $f .= "\t" . Html::hidden( $name, $value ) . "\n"; |
390 | 390 | } |
391 | 391 | |
392 | | - $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagFilter'] ); |
| 392 | + $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagfilter'] ); |
393 | 393 | |
394 | 394 | $f .= Xml::fieldset( wfMsg( 'sp-contributions-search' ) ) . |
395 | 395 | Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parsemag' ) ), |
— | — | @@ -444,7 +444,7 @@ |
445 | 445 | $this->target = isset( $options['target'] ) ? $options['target'] : ''; |
446 | 446 | $this->contribs = isset( $options['contribs'] ) ? $options['contribs'] : 'users'; |
447 | 447 | $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : ''; |
448 | | - $this->tagFilter = isset( $options['tagFilter'] ) ? $options['tagFilter'] : false; |
| 448 | + $this->tagFilter = isset( $options['tagfilter'] ) ? $options['tagfilter'] : false; |
449 | 449 | |
450 | 450 | $this->deletedOnly = !empty( $options['deletedOnly'] ); |
451 | 451 | $this->topOnly = !empty( $options['topOnly'] ); |