From b4fd4f2ddcdc03cf2173382ae025a8a906a030a5 Mon Sep 17 00:00:00 2001 From: pvhee <pvhee@108811.no-reply.drupal.org> Date: Wed, 27 Jun 2012 12:38:08 -0700 Subject: [PATCH] Issue #1662550 by pvhee: Fixed Invoke hook_feeds_after_import() after writing to the logs. --- includes/FeedsSource.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/FeedsSource.inc b/includes/FeedsSource.inc index b272b7f5..e0ac50c2 100644 --- a/includes/FeedsSource.inc +++ b/includes/FeedsSource.inc @@ -363,9 +363,9 @@ class FeedsSource extends FeedsConfigurable { // Clean up. $result = $this->progressImporting(); if ($result == FEEDS_BATCH_COMPLETE || isset($e)) { - module_invoke_all('feeds_after_import', $this); $this->imported = time(); $this->log('import', 'Imported in !s s', array('!s' => $this->imported - $this->state[FEEDS_START]), WATCHDOG_INFO); + module_invoke_all('feeds_after_import', $this); unset($this->fetcher_result, $this->state); } $this->save(); -- GitLab