* Use PLURAL for 'search-result-size'
[lhc/web/wiklou.git] / includes / Licenses.php
index 163db39..6a03446 100644 (file)
@@ -1,9 +1,8 @@
 <?php
 /**
  * A License class for use on Special:Upload
- *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * 
+ * @addtogroup SpecialPage
  *
  * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
  * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
@@ -147,6 +146,9 @@ class Licenses {
        function getHtml() { return $this->html; }
 }
 
+/**
+ * A License class for use on Special:Upload (represents a single type of license).
+ */
 class License {
        /**
         * @var string
@@ -170,4 +172,4 @@ class License {
                $this->text = strrev( $text );
        }
 }
-?>
+