Replace wfRunHooks with Hooks::run

MediaWiki 1.32 removed wfRunHooks so replace with Hooks::run
pull/74/head
paladox 2019-01-11 05:43:29 +00:00 committed by GitHub
parent 15cce18901
commit a128dd152a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ class pivotTemplate extends BaseTemplate {
<a href="#" data-options="align:left" data-dropdown="drop1" class="button secondary small radius pull-right hide-for-print" id="drop"><i class="fa fa-navicon fa-lg"><span id="page-actions" class="show-for-medium-up">&nbsp;<?php echo wfMessage( 'actions' )->text() ?></span></i></a>
<ul id="drop1" class="tiny content f-dropdown" data-dropdown-content>
<?php foreach($this->data['content_actions'] as $key => $tab) { echo preg_replace(array('/\sprimary="1"/', '/\scontext="[a-z]+"/', '/\srel="archives"/'),'',$this->makeListItem($key, $tab)); } ?>
<?php wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this, true )); ?>
<?php Hooks::run( 'SkinTemplateToolboxEnd', array( &$this, true )); ?>
</ul>
<?php endif;
@ -307,4 +307,4 @@ class pivotTemplate extends BaseTemplate {
}
return; }
}
?>
?>