From: Sam Reed Date: Tue, 11 Oct 2011 18:30:50 +0000 (+0000) Subject: Fix comment blocks that start /* to /** X-Git-Tag: 1.31.0-rc.0~27142 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=90e74042b44e9305ae3e03548b5509a11c0c5c45;p=lhc%2Fweb%2Fwiklou.git Fix comment blocks that start /* to /** --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 35ae738373..daeb88b568 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2488,7 +2488,7 @@ $wgResourceModules = array(); */ $wgResourceLoaderSources = array(); -/* +/** * Default 'remoteBasePath' value for resource loader modules. * If not set, then $wgScriptPath will be used as a fallback. */ @@ -3635,7 +3635,7 @@ $wgAutopromoteOnce = array( 'onView' => array() ); -/* +/** * Put user rights log entries for autopromotion in recent changes? * @since 1.18 */ diff --git a/includes/Exception.php b/includes/Exception.php index 432b768af2..f771af0680 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -131,7 +131,10 @@ class MWException extends Exception { } } - /* Return titles of this error page */ + /** + * Return titles of this error page + * @return String + */ function getPageTitle() { global $wgSitename; return $this->msg( 'internalerror', "$wgSitename error" ); diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index b8700dbf46..b94fca4351 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -8,7 +8,7 @@ require_once( dirname(__FILE__) . '/../../maintenance/Maintenance.php' ); -/* +/** * Class for handling database updates. Roughly based off of updaters.inc, with * a few improvements :) * diff --git a/languages/messages/MessagesLv.php b/languages/messages/MessagesLv.php index 0784e73b89..190ed51ef5 100644 --- a/languages/messages/MessagesLv.php +++ b/languages/messages/MessagesLv.php @@ -22,7 +22,7 @@ * @author לערי ריינהארט */ -/* +/** * @copyright Copyright © 2006, Niklas Laxström * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later */ diff --git a/languages/messages/MessagesRu.php b/languages/messages/MessagesRu.php index 25395425ee..8af96b7d13 100644 --- a/languages/messages/MessagesRu.php +++ b/languages/messages/MessagesRu.php @@ -56,7 +56,7 @@ * @author გიორგიმელა */ -/* +/** * Изменения сделанные в этом файле будут потеряны при обновлении MediaWiki. * * Если необходимо внести изменения в перевод отдельных строк интерфейса, diff --git a/languages/messages/MessagesUk.php b/languages/messages/MessagesUk.php index 5e3b94a17b..c94e808406 100644 --- a/languages/messages/MessagesUk.php +++ b/languages/messages/MessagesUk.php @@ -35,7 +35,7 @@ * @author Тест */ -/* +/** * УВАГА! НЕ РЕДАГУЙТЕ ЦЕЙ ФАЙЛ! * * Якщо необхідно змінити переклад окремих частин інтерфейсу, diff --git a/maintenance/fuzz-tester.php b/maintenance/fuzz-tester.php index 89a88e66fc..2348a15f45 100644 --- a/maintenance/fuzz-tester.php +++ b/maintenance/fuzz-tester.php @@ -2395,8 +2395,8 @@ function wikiTestOutput( pageTest $test ) { // ////////////////// HTML VALIDATION ///////////////////////// -/* - ** Asks the validator whether this is valid HTML, or not. +/** + * Asks the validator whether this is valid HTML, or not. */ function validateHTML( $text ) { diff --git a/maintenance/populateParentId.php b/maintenance/populateParentId.php index 67689b9f6d..14f158c95d 100644 --- a/maintenance/populateParentId.php +++ b/maintenance/populateParentId.php @@ -1,5 +1,5 @@