Index: trunk/extensions/PageCSS/PageCSS.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | $wgExtensionFunctions[] = array( 'CssHook', 'setup' ); |
15 | 15 | $wgExtensionCredits['parserhook'][] = array( |
16 | 16 | 'name' => 'Page CSS', |
17 | | - 'description' => 'A parser hook to add per-page css to pages with the <nowiki><css></nowiki> tag', |
| 17 | + 'description' => 'Parser hook to add per-page CSS using the <tt><css></tt> tag', |
18 | 18 | 'author' => 'Ævar Arnfjörð Bjarmason' |
19 | 19 | ); |
20 | 20 | |
Index: trunk/extensions/Poem/Poem.php |
— | — | @@ -21,8 +21,8 @@ |
22 | 22 | $wgExtensionFunctions[]="wfPoemExtension"; |
23 | 23 | $wgExtensionCredits['parserhook'][] = array( |
24 | 24 | 'name' => 'Poem', |
25 | | - 'author' => 'Nikola Smolenski, Brion Vibber, Steve Sanbeg', |
26 | | - 'description' => 'Adds <nowiki><poem></nowiki> tag for poem formatting', |
| 25 | + 'author' => array( 'Nikola Smolenski', 'Brion Vibber', 'Steve Sanbeg' ), |
| 26 | + 'description' => 'Adds <tt><poem></tt> tag for poem formatting', |
27 | 27 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Poem' |
28 | 28 | ); |
29 | 29 | $wgParserTestFiles[] = dirname( __FILE__ ) . "/poemParserTests.txt"; |
Index: trunk/extensions/Duplicator/Duplicator.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | 'name' => 'Duplicator', |
16 | 16 | 'author' => 'Rob Church', |
17 | 17 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Duplicator', |
18 | | - 'description' => 'Create independent copies of articles with distinct edit histories', |
| 18 | + 'description' => 'Create independent copies of articles with full edit histories', |
19 | 19 | ); |
20 | 20 | $wgExtensionFunctions[] = 'efDuplicator'; |
21 | 21 | |