diff options
author | Yuri Astrakhan <yurik@wikimedia.org> | 2013-03-13 03:42:41 -0400 |
---|---|---|
committer | Yuri Astrakhan <yurik@wikimedia.org> | 2013-03-13 03:42:41 -0400 |
commit | 9506e3d8121fb1c12b9cc72ca53561c592fdf6cf (patch) | |
tree | 58c2964c36084669faa6b582d0c1550838436e42 /includes/SpecialPage.php | |
parent | 9a05921d23e20e66cb957fe23af06b11ff7b7eb1 (diff) | |
download | mediawikicore-9506e3d8121fb1c12b9cc72ca53561c592fdf6cf.tar.gz mediawikicore-9506e3d8121fb1c12b9cc72ca53561c592fdf6cf.zip |
Spellchecked /includes directory
* Ran spell-checker over code comments in /includes/
* A few spellchecking fixes for wfDebug() calls
Found one very strange (NOOP?) line in Linker.php - see "TODO: BUG?"
Change-Id: Ibb86b51073b980eda9ecce2cf0b8dd33f058adbf
Diffstat (limited to 'includes/SpecialPage.php')
-rw-r--r-- | includes/SpecialPage.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 5354da6d7042..c32738f8b6f7 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -670,7 +670,7 @@ class SpecialPage { /** * Outputs a summary message on top of special pages * Per default the message key is the canonical name of the special page - * May be overriden, i.e. by extensions to stick with the naming conventions + * May be overridden, i.e. by extensions to stick with the naming conventions * for message keys: 'extensionname-xxx' * * @param string $summaryMessageKey message key of the summary @@ -827,7 +827,7 @@ class SpecialPage { // RequestContext passes context to wfMessage, and the language is set from // the context, but setting the language for Message class removes the // interface message status, which breaks for example usernameless gender - // invokations. Restore the flag when not including special page in content. + // invocations. Restore the flag when not including special page in content. if ( $this->including() ) { $message->setInterfaceMessageFlag( false ); } @@ -864,7 +864,7 @@ class SpecialPage { $name = $this->getName(); $group = '-'; - // Allow overridding the group from the wiki side + // Allow overbidding the group from the wiki side $msg = $this->msg( 'specialpages-specialpagegroup-' . strtolower( $name ) )->inContentLanguage(); if ( !$msg->isBlank() ) { $group = $msg->text(); @@ -873,7 +873,7 @@ class SpecialPage { $group = $this->getGroupName(); // Group '-' is used as default to have the chance to determine, - // if the special pages overriddes this method, + // if the special pages overrides this method, // if not overridden, $wgSpecialPageGroups is checked for b/c if ( $group === '-' && isset( $wgSpecialPageGroups[$name] ) ) { $group = $wgSpecialPageGroups[$name]; @@ -1082,7 +1082,7 @@ abstract class RedirectSpecialPage extends UnlistedSpecialPage { // Query parameters that can be passed through redirects protected $mAllowedRedirectParams = array(); - // Query parameteres added by redirects + // Query parameters added by redirects protected $mAddedRedirectParams = array(); public function execute( $par ) { @@ -1191,7 +1191,7 @@ class SpecialCreateAccount extends SpecialRedirectToSpecial { } /** * SpecialMypage, SpecialMytalk and SpecialMycontributions special pages - * are used to get user independant links pointing to the user page, talk + * are used to get user independent links pointing to the user page, talk * page and list of contributions. * This can let us cache a single copy of any generated content for all * users. |