Index: trunk/extensions/Tasks/Tasks.php |
— | — | @@ -415,7 +415,7 @@ |
416 | 416 | * @param array $content_actions |
417 | 417 | * @return bool true to continue running other hooks, false to abort operation |
418 | 418 | */ |
419 | | -function wfTasksExtensionTab( &$skin, &$content_actions ) { # Checked for HTML and MySQL insertion attacks |
| 419 | +function wfTasksExtensionTab( $skin, &$content_actions ) { # Checked for HTML and MySQL insertion attacks |
420 | 420 | global $wgTitle, $action; |
421 | 421 | if( $wgTitle->isTalkPage() ) { |
422 | 422 | # No talk pages please |
Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -92,7 +92,7 @@ |
93 | 93 | /** |
94 | 94 | * Add action link |
95 | 95 | */ |
96 | | - function onSkinTemplateTabs( &$skin, &$actions ) { |
| 96 | + function onSkinTemplateTabs( $skin, &$actions ) { |
97 | 97 | $tmp = array(); |
98 | 98 | foreach ( $actions as $k => $v ) { |
99 | 99 | $tmp[$k] = $v; |
Index: trunk/extensions/EmailPage/EmailPage.php |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | return true; |
62 | 62 | } |
63 | 63 | |
64 | | -function wfEmailPageActionLink( &$skin, &$actions ) { |
| 64 | +function wfEmailPageActionLink( $skin, &$actions ) { |
65 | 65 | global $wgTitle, $wgUser, $wgEmailPageGroup; |
66 | 66 | if ( is_object( $wgTitle ) && ( empty( $wgEmailPageGroup ) || in_array( $wgEmailPageGroup, $wgUser->getEffectiveGroups() ) ) ) { |
67 | 67 | $url = Title::makeTitle( NS_SPECIAL, 'EmailPage' )->getLocalURL('ea-title='.$wgTitle->getPrefixedText() ); |
Index: trunk/extensions/Todo/SpecialTodo.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | * @param array $actions |
57 | 57 | * @return bool true to continue running hooks, false to abort operation |
58 | 58 | */ |
59 | | -function todoAddTab( &$skin, &$actions ) { |
| 59 | +function todoAddTab( $skin, &$actions ) { |
60 | 60 | global $wgTitle; |
61 | 61 | if ( $wgTitle->getNamespace() == NS_USER || $wgTitle->getNamespace() == NS_USER_TALK ) { |
62 | 62 | $title = Title::makeTitle( NS_SPECIAL, 'Todo/' . $wgTitle->getText() ); |
Index: trunk/extensions/GroupPermissionsManager/plugins/CustomTabs.php |
— | — | @@ -154,7 +154,7 @@ |
155 | 155 | return $res; //if one of the extensions returned false, then we return false |
156 | 156 | } |
157 | 157 | |
158 | | -function efGPManagerGetSkin(&$skin, $ca) { |
| 158 | +function efGPManagerGetSkin($skin, $ca) { |
159 | 159 | global $egSkinObj; |
160 | 160 | $egSkinObj = $skin; |
161 | 161 | return true; |