Index: trunk/extensions/CheckUser/CheckUser.php |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | 'scripts' => 'checkuser.js', |
76 | 76 | 'dependencies' => array( 'mediawiki.legacy.block' ), // IP stuff |
77 | 77 | 'localBasePath' => dirname( __FILE__ ), |
78 | | - 'remoteExtPath' => 'CheckUser', |
| 78 | + 'remoteExtPath' => 'CheckUser', |
79 | 79 | ); |
80 | 80 | |
81 | 81 | // TODO: move hooks to CheckUser.hooks.php |
Index: trunk/extensions/CheckUser/checkuser.js |
— | — | @@ -214,7 +214,7 @@ |
215 | 215 | document.getElementById( 'mw-checkuser-ipnote' ).innerHTML = ''; |
216 | 216 | } |
217 | 217 | |
218 | | -} |
| 218 | +}; |
219 | 219 | addOnloadHook( updateCIDRresult ); |
220 | 220 | |
221 | 221 | // Utility function to convert hex to integers |
— | — | @@ -250,4 +250,4 @@ |
251 | 251 | intform += digit * Math.pow( 16, hex.length - 1 - i ); |
252 | 252 | } |
253 | 253 | return intform; |
254 | | -} |
| 254 | +}; |