From 44330d3a33c1af91475eb797598e7fc7de69b1a9 Mon Sep 17 00:00:00 2001 From: jmontoyaa Date: Fri, 28 Oct 2016 11:43:18 +0200 Subject: [PATCH] Add logs + fix condition --- main/cron/import_csv.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/main/cron/import_csv.php b/main/cron/import_csv.php index 55d0694938..82fb69b294 100755 --- a/main/cron/import_csv.php +++ b/main/cron/import_csv.php @@ -932,9 +932,11 @@ class ImportCsv ); $item = null; - foreach ($items as $tempItem) { - if ($tempItem['item_id'] == $event['course_id']) { - $item = $tempItem; + if (!empty($items)) { + foreach ($items as $tempItem) { + if ($tempItem['item_id'] == $externalEventId) { + $item = $tempItem; + } } } @@ -944,6 +946,10 @@ class ImportCsv ); $update = true; //continue; + } else { + $this->logger->addInfo( + "Event #$externalEventId was not added. Preparing to be created ..." + ); } } @@ -976,7 +982,6 @@ class ImportCsv } $content = ''; - if ($update && isset($item['calendar_event_id'])) { //the event already exists, just update $eventId = $agenda->editEvent(