A few comment tag tweaks.
This commit is contained in:
parent
33829a65f6
commit
d466cf6e86
8 changed files with 12 additions and 7 deletions
|
|
@ -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";
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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' );
|
||||
|
|
|
|||
|
|
@ -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' );
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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' );
|
||||
|
|
|
|||
Loading…
Reference in a new issue