Add base64_decode to Article row

pull/2487/head
jmontoyaa 8 years ago
parent a546d94126
commit 90a7217f01
  1. 4
      main/cron/import_csv.php

@ -2269,9 +2269,11 @@ class ImportCsv
$this->logger->addInfo("New post will be created no match for externalCareId = ".$row['External_care_id']);
}
$contentDecoded = base64_decode($row['Article']);
$post
->setTitle($row['Title'])
->setContent($row['Article'])
->setContent($contentDecoded)
->setExternalCareId($row['External_care_id'])
->setCreatedAt($createdAt)
->setUpdatedAt($updatedAt)

Loading…
Cancel
Save