From: Sam Reed Date: Mon, 28 Nov 2011 19:17:06 +0000 (+0000) Subject: Followup r104441 X-Git-Tag: 1.31.0-rc.0~26248 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=7f3f1f7cafa806e27dbd06f668264a581a6efd1f;p=lhc%2Fweb%2Fwiklou.git Followup r104441 Fix capitalisation mismatch --- diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index aa53691389..c2cd22b7dd 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -539,7 +539,7 @@ abstract class ApiBase extends ContextSource { */ public function getFinalDescription() { $desc = $this->getDescription(); - wfRunHooks( 'ApiGetDescription', array( &$this, &$desc ) ); + wfRunHooks( 'APIGetDescription', array( &$this, &$desc ) ); return $desc; }