From: Sam Reed Date: Thu, 11 Feb 2010 22:18:16 +0000 (+0000) Subject: $this->mModuleName to $this->getModuleName() X-Git-Tag: 1.31.0-rc.0~37810 X-Git-Url: http://git.cyclocoop.org/%27.parametre_url%28%20%20%20generer_action_auteur%28%27charger_plugin%27%2C%20%27update_flux%27%29%2C%27update_flux%27%2C%20%27oui%27%29.%27?a=commitdiff_plain;h=20206755ee7a0ca3668d7d9b7582cd3414c353a6;p=lhc%2Fweb%2Fwiklou.git $this->mModuleName to $this->getModuleName() --- diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index 22310feb12..434f805a16 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -973,7 +973,7 @@ abstract class ApiBase { $ret = array( array( 'readrequired' ) ); if ( $this->mustBePosted() ) { - $ret = array_merge( $ret, array( array ('mustbeposted', $this->mModuleName ) ) ); + $ret = array_merge( $ret, array( array ('mustbeposted', $this->getModuleName() ) ) ); } return $ret;