From 41a22065e6276f1ad350a0fa82b519413f4e71de Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Wed, 16 Sep 2015 16:52:39 +0200 Subject: [PATCH] Add missing argument to dieDebug call so it does not die Change-Id: I672f4f1a407b35bf88216508156035ef96a7289f --- includes/api/ApiQueryDeletedRevisions.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/api/ApiQueryDeletedRevisions.php b/includes/api/ApiQueryDeletedRevisions.php index 3a98478803..bf48b19496 100644 --- a/includes/api/ApiQueryDeletedRevisions.php +++ b/includes/api/ApiQueryDeletedRevisions.php @@ -234,8 +234,10 @@ class ApiQueryDeletedRevisions extends ApiQueryRevisionsBase { } } if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) { - ApiBase::dieDebug( "Found row in archive (ar_id={$row->ar_id}) that didn't " . - "get processed by ApiPageSet" ); + ApiBase::dieDebug( + __METHOD__, + "Found row in archive (ar_id={$row->ar_id}) that didn't get processed by ApiPageSet" + ); } $fit = $this->addPageSubItem( -- 2.20.1