From 3fcc9a8bcde8f6f3a36eeca2e211893ecad127bc Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 11 Feb 2010 22:22:20 +0000 Subject: [PATCH] Fix r62331 - If we renamed a method, we need to to it everywhere! --- includes/api/ApiParamInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiParamInfo.php b/includes/api/ApiParamInfo.php index 1dcd91876f..85ded55dcb 100644 --- a/includes/api/ApiParamInfo.php +++ b/includes/api/ApiParamInfo.php @@ -172,7 +172,7 @@ class ApiParamInfo extends ApiBase { $result->setIndexedTagName( $retval['parameters'], 'param' ); // Errors - $retval['errors'] = $this->parseErrors( $obj->possibleErrors() ); + $retval['errors'] = $this->parseErrors( $obj->getPossibleErrors() ); $result->setIndexedTagName( $retval['errors'], 'error' ); -- 2.20.1