diff options
author | Siebrand Mazeland <siebrand@users.mediawiki.org> | 2012-01-13 21:11:27 +0000 |
---|---|---|
committer | Siebrand Mazeland <siebrand@users.mediawiki.org> | 2012-01-13 21:11:27 +0000 |
commit | 1033737a05fb40bdf1c7027b0cc80d99536d45d6 (patch) | |
tree | e22ce8d0c2756b84b740a712c9d90832b4601fa3 /includes/api/ApiQueryDisabled.php | |
parent | fe501761af67b79bae8de3ae0062e28d15563fe9 (diff) | |
download | mediawikicore-1033737a05fb40bdf1c7027b0cc80d99536d45d6.tar.gz mediawikicore-1033737a05fb40bdf1c7027b0cc80d99536d45d6.zip |
Change usage of quotes in API messages from ``x'' to "x".
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/108847
Diffstat (limited to 'includes/api/ApiQueryDisabled.php')
-rw-r--r-- | includes/api/ApiQueryDisabled.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/api/ApiQueryDisabled.php b/includes/api/ApiQueryDisabled.php index aa31881408ab..d68480c35d5f 100644 --- a/includes/api/ApiQueryDisabled.php +++ b/includes/api/ApiQueryDisabled.php @@ -41,7 +41,7 @@ class ApiQueryDisabled extends ApiQueryBase { } public function execute() { - $this->setWarning( "The ``{$this->getModuleName()}'' module has been disabled." ); + $this->setWarning( "The \"{$this->getModuleName()}\" module has been disabled." ); } public function getAllowedParams() { |