Skip to content

Commit

Permalink
Merge pull request #14217 from prondubuisi/this-in-static-method
Browse files Browse the repository at this point in the history
dev/core#945 - fix  use of $this error in static method
  • Loading branch information
monishdeb authored May 9, 2019
2 parents 6e46270 + b387099 commit 8459619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Contact/Import/ImportJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ public static function getIncompleteImportTables() {
$result = CRM_Core_DAO::executeQuery($query, array($database));
$incompleteImportTables = array();
while ($importTable = $result->fetch()) {
if (!$this->isComplete($importTable)) {
if (!self::isComplete($importTable)) {
$incompleteImportTables[] = $importTable;
}
}
Expand Down

0 comments on commit 8459619

Please sign in to comment.