From: Ori Livneh Date: Thu, 2 Jul 2015 01:48:34 +0000 (-0700) Subject: Fix reference to nonexistent ApiBase::getModulePathString in inline docs X-Git-Tag: 1.31.0-rc.0~10904^2 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=a5db4b7f288d90a5273335553a9eca65c193bd0c;p=lhc%2Fweb%2Fwiklou.git Fix reference to nonexistent ApiBase::getModulePathString in inline docs Change-Id: Iad6420ea88c4cf94c234be7f01a2ed2854e02919 --- diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index 4b76e65eee..393ff49d7c 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -2481,7 +2481,7 @@ abstract class ApiBase extends ContextSource { * Returns the description string for this module * * Ignored if an i18n message exists for - * "apihelp-{$this->getModulePathString()}-description". + * "apihelp-{$this->getModulePath()}-description". * * @deprecated since 1.25 * @return Message|string|array @@ -2495,7 +2495,7 @@ abstract class ApiBase extends ContextSource { * * For each parameter, ignored if an i18n message exists for the parameter. * By default that message is - * "apihelp-{$this->getModulePathString()}-param-{$param}", but it may be + * "apihelp-{$this->getModulePath()}-param-{$param}", but it may be * overridden using ApiBase::PARAM_HELP_MSG in the data returned by * self::getFinalParams(). *