From 7f3f1f7cafa806e27dbd06f668264a581a6efd1f Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Mon, 28 Nov 2011 19:17:06 +0000 Subject: [PATCH] Followup r104441 Fix capitalisation mismatch --- 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 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; } -- 2.20.1