* complete $wgExtensionCredits

* remove trailing whitespace
This commit is contained in:
Siebrand Mazeland 2007-12-09 12:56:07 +00:00
parent 1ebc865ff8
commit 86a1bf9801

View file

@ -21,9 +21,10 @@ if ( ! defined( 'MEDIAWIKI' ) )
$wgExtensionFunctions[] = 'wfCite'; $wgExtensionFunctions[] = 'wfCite';
$wgExtensionCredits['parserhook'][] = array( $wgExtensionCredits['parserhook'][] = array(
'name' => 'Cite', 'name' => 'Cite',
'version' => '1.1',
'author' => 'Ævar Arnfjörð Bjarmason', 'author' => 'Ævar Arnfjörð Bjarmason',
'description' => 'Adds <nowiki><ref[ name=id]></nowiki> and <nowiki><references/></nowiki> tags, for citations', 'description' => 'Adds <nowiki><ref[ name=id]></nowiki> and <nowiki><references/></nowiki> tags, for citations',
'url' => 'http://www.mediawiki.org/wiki/Extension:Cite/Cite.php' 'url' => 'http://www.mediawiki.org/wiki/Extension:Cite/Cite.php',
); );
$wgParserTestFiles[] = dirname( __FILE__ ) . "/citeParserTests.txt"; $wgParserTestFiles[] = dirname( __FILE__ ) . "/citeParserTests.txt";
@ -680,6 +681,3 @@ function wfCite() {
new Cite; new Cite;
} }
/**#@-*/