Add missing $hint to 'EditSectionLink' hook call
authorRob Church <robchurch@users.mediawiki.org>
Tue, 5 Jun 2007 12:54:13 +0000 (12:54 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Tue, 5 Jun 2007 12:54:13 +0000 (12:54 +0000)
docs/hooks.txt
includes/Linker.php

index 9ea390d..af4a585 100644 (file)
@@ -402,6 +402,7 @@ $result: Result (alter this to override the generated links)
 $skin: Skin rendering the UI
 $title: Title being linked to
 $section: Section to link to
+$hint: Anchor title/tooltip attributes
 $link: Default link
 $result: Result (alter this to override the generated links)
 
index 0969566..0020091 100644 (file)
@@ -1079,7 +1079,7 @@ class Linker {
                $hint = ( $hint=='' ) ? '' : ' title="' . wfMsgHtml( 'editsectionhint', htmlspecialchars( $hint ) ) . '"';
                $url = $this->makeKnownLinkObj( $nt, wfMsg('editsection'), 'action=edit'.$editurl, '', '', '',  $hint );
                $result = null;
-               wfRunHooks( 'EditSectionLink', array( &$this, $nt, $section, $url, &$result ) );
+               wfRunHooks( 'EditSectionLink', array( &$this, $nt, $section, $hint, $url, &$result ) );
                return is_null( $result )
                        ? "<span class=\"editsection\">[{$url}]</span>"
                        : "<span class=\"editsection\">[{$result}]</span>";