Index: trunk/phase3/docs/hooks.txt |
— | — | @@ -753,12 +753,6 @@ |
754 | 754 | $specialPageAliases: associative array of magic words synonyms |
755 | 755 | $lang: laguage code (string) |
756 | 756 | |
757 | | -'LinkerLinkAttributes': At the end of Linker::getLinkAttributesInternal() just before the return |
758 | | -&$this: Linker object |
759 | | -$title: 'title' attribute string |
760 | | -$class: 'class' attribute string |
761 | | -&$result: Final attribute string |
762 | | - |
763 | 757 | 'LinkerMakeExternalImage': At the end of Linker::makeExternalImage() just before the return |
764 | 758 | &$url: the image url |
765 | 759 | &$alt: the image's alt text |
Index: trunk/phase3/includes/Linker.php |
— | — | @@ -108,7 +108,6 @@ |
109 | 109 | $r .= " class=\"$class\""; |
110 | 110 | } |
111 | 111 | $r .= " title=\"$title\""; |
112 | | - wfRunHooks( 'LinkerLinkAttributes', array( &$this, $title, $class, &$r ) ); |
113 | 112 | return $r; |
114 | 113 | } |
115 | 114 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -188,7 +188,6 @@ |
189 | 189 | the database is potentially queried |
190 | 190 | * (bug 9736) Redirects on Special:Fewestrevisions are now marked as such. |
191 | 191 | * New date/time formats in Cs localization according to ČSN and PČP. |
192 | | -* Added new hook LinkerLinkAttributes for modifying attributes of <a> tags. |
193 | 192 | * Add a new hook SkinSetupSiteCss to allow extensions to define new stylesheets |
194 | 193 | to load site wide, or modify the list of stylesheets to load. This can be useful |
195 | 194 | for wiki farms who need a specific placement of the stylesheets to cascade right. |