diff --git a/content/content.index.php b/content/content.index.php index 4cde94a..8b2ac2b 100644 --- a/content/content.index.php +++ b/content/content.index.php @@ -389,7 +389,7 @@ private function __exportPage() for($offset = 0; $offset < $total; $offset += 100) { - $entries = EntryManager::fetch(null, $sectionID, 100, $offset, $where, $joins); + $entries = EntryManager::fetch(null, $sectionID, 100, $offset, $where, $joins, false, true, null, false); foreach ($entries as $entry) { $line = array(); foreach ($fields as $field) { diff --git a/extension.driver.php b/extension.driver.php index fea88f1..337e357 100644 --- a/extension.driver.php +++ b/extension.driver.php @@ -22,7 +22,7 @@ public function fetchNavigation() } } - public function update() + public function update($previousVersion = false) { if (file_exists(TMP.'/importcsv.csv')) { @unlink(TMP.'/importcsv.csv');