From 20206755ee7a0ca3668d7d9b7582cd3414c353a6 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 11 Feb 2010 22:18:16 +0000 Subject: [PATCH] $this->mModuleName to $this->getModuleName() --- includes/api/ApiBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1