Index: branches/REL1_16/phase3/includes/api/ApiQueryRecentChanges.php |
— | — | @@ -155,7 +155,7 @@ |
156 | 156 | $this->addWhereIf( 'page_is_redirect = 0 OR page_is_redirect IS NULL', isset ( $show['!redirect'] ) ); |
157 | 157 | } |
158 | 158 | |
159 | | - if ( !is_null( $params['user'] ) && !is_null( $param['excludeuser'] ) ) |
| 159 | + if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) |
160 | 160 | $this->dieUsage( 'user and excludeuser cannot be used together', 'user-excludeuser' ); |
161 | 161 | |
162 | 162 | if ( !is_null( $params['user'] ) ) |
Index: branches/REL1_16/phase3/RELEASE-NOTES |
— | — | @@ -44,8 +44,11 @@ |
45 | 45 | you have the DBA extension for PHP installed, this will improve performance |
46 | 46 | further. |
47 | 47 | |
48 | | -== Changes since 1.16.4 |
| 48 | +== Changes since 1.16.5 == |
| 49 | +* Fixed undefined variable error in recentchanges API module. |
49 | 50 | |
| 51 | +== Changes since 1.16.4 == |
| 52 | + |
50 | 53 | * (bug 28534) Fixed XSS vulnerability for IE 6 clients. This is the third |
51 | 54 | attempt at fixing bug 28235. |
52 | 55 | * (bug 28639) Fixed potential privilege escalation when $wgBlockDisablesLogin |