Improved comments, created a version number ("1.0", for lack of a better number)

This commit is contained in:
Yaron Koren 2011-01-31 05:30:34 +00:00
parent f5acef1678
commit fb60663a5c

View file

@ -1,10 +1,12 @@
<?php <?php
/** /**
* Experimental captcha plugin framework. * ConfirmEdit MediaWiki extension.
* Not intended as a real production captcha system; derived classes *
* can extend the base to produce their fancy images in place of the * This is a framework that holds a variety of CAPTCHA tools. The
* text-based test output here. * default one, 'SimpleCaptcha', is not intended as a production-
* level CAPTCHA system, and another one of the options provided
* should be used in its place for any real usages.
* *
* Copyright (C) 2005-2007 Brion Vibber <brion@wikimedia.org> * Copyright (C) 2005-2007 Brion Vibber <brion@wikimedia.org>
* http://www.mediawiki.org/ * http://www.mediawiki.org/
@ -38,8 +40,9 @@ $wgExtensionFunctions[] = 'confirmEditSetup';
$wgExtensionCredits['other'][] = array( $wgExtensionCredits['other'][] = array(
'path' => __FILE__, 'path' => __FILE__,
'name' => 'ConfirmEdit', 'name' => 'ConfirmEdit',
'author' => 'Brion Vibber', 'author' => 'Brion Vibber and others',
'url' => 'http://www.mediawiki.org/wiki/Extension:ConfirmEdit', 'url' => 'http://www.mediawiki.org/wiki/Extension:ConfirmEdit',
'version' => '1.0',
'descriptionmsg' => 'captcha-desc', 'descriptionmsg' => 'captcha-desc',
); );