Index: trunk/extensions/ProofreadPage/ProofreadPage.php |
— | — | @@ -5,6 +5,10 @@ |
6 | 6 | } |
7 | 7 | |
8 | 8 | $wgHooks['OutputPageParserOutput'][] = 'wfProofreadPageParserOutput'; |
| 9 | +$wgExtensionCredits['parserhook'][] = array( |
| 10 | + 'name' => 'ProofreadPage', |
| 11 | + 'author' => 'ThomasV' |
| 12 | +); |
9 | 13 | |
10 | 14 | function wfProofreadPageParserOutput( &$out, &$pout ) { |
11 | 15 | global $wgTitle, $wgJsMimeType, $wgScriptPath, $wgRequest; |
Index: trunk/extensions/Poem/Poem.php |
— | — | @@ -19,6 +19,12 @@ |
20 | 20 | # http://meta.wikimedia.org/wiki/Poem_Extension |
21 | 21 | |
22 | 22 | $wgExtensionFunctions[]="wfPoemExtension"; |
| 23 | +$wgExtensionCredits['parserhook'][] = array( |
| 24 | + 'name' => 'Cite', |
| 25 | + 'author' => 'Nikola Smolenski', |
| 26 | + 'description' => 'adds <nowiki><poem></nowiki> tag for poem formatting', |
| 27 | + 'url' => 'http://meta.wikimedia.org/wiki/Poem_Extension' |
| 28 | +); |
23 | 29 | |
24 | 30 | function wfPoemExtension() { |
25 | 31 | $GLOBALS['wgParser']->setHook("poem","PoemExtension"); |