A few comment tag tweaks.

This commit is contained in:
Nick Jenkins 2007-07-11 08:09:21 +00:00
parent 33829a65f6
commit d466cf6e86
8 changed files with 12 additions and 7 deletions

View 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";
*/

View 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.
*/

View 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
*/

View 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";

View 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' );

View 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' );

View 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();

View file

@ -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' );