From de68944e076da46754809fe9dbc516855f20be48 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Thu, 11 Jun 2020 21:31:23 +0100 Subject: [PATCH] Fix extra process class method --- lib/bug-files-check.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bug-files-check.php b/lib/bug-files-check.php index 17c5288..1ae63ec 100644 --- a/lib/bug-files-check.php +++ b/lib/bug-files-check.php @@ -113,7 +113,7 @@ $status = array( // Include our process once our bug checking work is done $extraProcesses = new ExtraProcesses(); -$doNext = $extraProcesses->onFileDirPaste($result, $status); +$doNext = $extraProcesses->onBugCheckResult($result, $status); // Finally, display our status in JSON format as the XHR response text echo json_encode($status);