Index: trunk/phase3/includes/SpecialContributions.php |
— | — | @@ -216,9 +216,6 @@ |
217 | 217 | |
218 | 218 | $id = User::idFromName($nt->getText()); |
219 | 219 | |
220 | | - if ( ! wfRunHooks( 'wfSpecialContributionsAfterId', array( &$this, &$id ) ) ) |
221 | | - return; |
222 | | - |
223 | 220 | if ( 0 == $id ) { |
224 | 221 | $ul = $nt->getText(); |
225 | 222 | } else { |
Index: trunk/phase3/includes/SpecialListusers.php |
— | — | @@ -209,11 +209,8 @@ |
210 | 210 | * $par string (optional) A group to list users from |
211 | 211 | */ |
212 | 212 | function wfSpecialListusers( $par = null ) { |
213 | | - if ( ! wfRunHooks( 'wfSpecialListusers' ) ) |
214 | | - return; |
215 | | - |
216 | 213 | global $wgRequest; |
217 | | - |
| 214 | + |
218 | 215 | list( $limit, $offset ) = wfCheckLimits(); |
219 | 216 | |
220 | 217 | |