A few comment tag tweaks.
authorNick Jenkins <nickj@users.mediawiki.org>
Wed, 11 Jul 2007 08:09:21 +0000 (08:09 +0000)
committerNick Jenkins <nickj@users.mediawiki.org>
Wed, 11 Jul 2007 08:09:21 +0000 (08:09 +0000)
includes/Database.php
includes/User.php
languages/messages/MessagesNn.php
maintenance/namespaceDupes.php
maintenance/showStats.php
maintenance/sql.php
skins/disabled/HTMLDump.php
thumb.php

index eaffcf6..160e143 100644 (file)
@@ -1603,7 +1603,7 @@ class Database {
         * This is handy when you need to construct SQL for joins
         *
         * Example:
-        * list( $user, $watchlist ) = $dbr->tableNames('user','watchlist');
+        * list( $user, $watchlist ) = $dbr->tableNamesN('user','watchlist');
         * $sql = "SELECT wl_namespace,wl_title FROM $watchlist,$user
         *         WHERE wl_user=user_id AND wl_user=$nameWithQuotes";
         */
index 939caf2..d96cc6b 100644 (file)
@@ -1365,7 +1365,8 @@ class User {
 
        /**
         * Encrypt a password.
-        * It can eventuall salt a password @see User::addSalt()
+        * It can eventually salt a password.
+        * @see User::addSalt()
         * @param string $p clear Password.
         * @return string Encrypted password.
         */
index b8180ad..8a1a759 100644 (file)
@@ -6,8 +6,8 @@
   *
   * @author Olve Utne
   * @author Guttorm Flatabø
-  * @link http://meta.wikimedia.org/w/index.php?title=LanguageNn.php&action=history
-  * @link http://nn.wikipedia.org/w/index.php?title=Brukar:Dittaeva/LanguageNn.php&action=history
+  * @see http://meta.wikimedia.org/w/index.php?title=LanguageNn.php&action=history
+  * @see http://nn.wikipedia.org/w/index.php?title=Brukar:Dittaeva/LanguageNn.php&action=history
   *
   * @addtogroup Language
   */
index 79a1d56..16796ba 100644 (file)
@@ -133,7 +133,7 @@ class NamespaceConflictChecker {
        }
        
        /**
-        * @fixme: do this for reals
+        * @todo: do this for reals
         */
        function checkPrefix( $key, $prefix, $fix, $suffix = '' ) {
                echo "Checking prefix \"$prefix\" vs namespace $key\n";
index 8cd0aa7..97b6a19 100644 (file)
@@ -9,7 +9,7 @@
  * @author Brion Vibber
  * @author Rob Church <robchur@gmail.com>
  *
- * @licence GNU General Public License 2.0 or later
+ * @license GNU General Public License 2.0 or later
  */
 
 require_once( 'commandLine.inc' );
index 02c6dbf..5ec1d8d 100644 (file)
@@ -3,6 +3,8 @@
 /**
  * Send SQL queries from the specified file to the database, performing
  * variable replacement along the way.
+ * 
+ * @addtogroup Database
  */
 
 require_once( dirname(__FILE__) . '/' . 'commandLine.inc' );
index 4e1ca4e..d5e2300 100644 (file)
@@ -101,7 +101,7 @@ class HTMLDumpTemplate extends QuickTemplate {
         * class, and a wrapper for MediaWiki's localization database, and
         * outputs a formatted page.
         *
-        * @access private
+        * @private
         */
        function execute() {
                wfSuppressWarnings();
index f3661bc..2159d2e 100644 (file)
--- a/thumb.php
+++ b/thumb.php
@@ -2,6 +2,8 @@
 
 /**
  * PHP script to stream out an image thumbnail.
+ *
+ * @addtogroup Media
  */
 define( 'MW_NO_OUTPUT_COMPRESSION', 1 );
 require_once( './includes/WebStart.php' );