Skip to content
Snippets Groups Projects
Unverified Commit 84596198 authored by Monish Deb's avatar Monish Deb Committed by GitHub
Browse files

Merge pull request #14217 from prondubuisi/this-in-static-method

#945 - fix  use of $this error in static method
parents 6e462705 b3870992
Branches
Tags
No related merge requests found
......@@ -416,7 +416,7 @@ class CRM_Contact_Import_ImportJob {
$result = CRM_Core_DAO::executeQuery($query, array($database));
$incompleteImportTables = array();
while ($importTable = $result->fetch()) {
if (!$this->isComplete($importTable)) {
if (!self::isComplete($importTable)) {
$incompleteImportTables[] = $importTable;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment