* Updated documentation

* Updated the link to the online documentation, now on meta
This commit is contained in:
Ævar Arnfjörð Bjarmason 2005-12-25 19:39:22 +00:00
parent 6a5fe406eb
commit 960b7846bb

View file

@ -2,9 +2,14 @@
if ( ! defined( 'MEDIAWIKI' ) )
die();
/**#@+
* A parser extension that adds two tags, <ref> and <references> for adding
* citations to pages
*
* @package MediaWiki
* @subpackage Extensions
*
* @link http://meta.wikimedia.org/wiki/Cite/Cite.php Documentation
*
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
@ -15,7 +20,7 @@ $wgExtensionCredits['parserhook'][] = array(
'name' => 'Cite',
'author' => 'Ævar Arnfjörð Bjarmason',
'description' => 'adds <nowiki><ref[ name=id]></nowiki> and <nowiki><references/></nowiki> tags, for citations',
'url' => 'http://avar.lir.dk/mw/HEAD/wiki/Cite'
'url' => 'http://meta.wikimedia.org/wiki/Cite/Cite.php'
);
/**