aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/BrowserImport.php
diff options
context:
space:
mode:
authorSébastien Viande <sviande@gmail.com>2018-04-11 11:42:52 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-09-21 10:33:33 +0200
commit7975395d10bb381de8cd15b5ee15198318af6d55 (patch)
tree98e3fc9f9ca7bddfd4331132c44953aa4e120259 /src/Wallabag/ImportBundle/Import/BrowserImport.php
parent2f3af70e1ae6f9dd403e87d232ddf5315e34e430 (diff)
downloadwallabag-7975395d10bb381de8cd15b5ee15198318af6d55.tar.gz
wallabag-7975395d10bb381de8cd15b5ee15198318af6d55.tar.zst
wallabag-7975395d10bb381de8cd15b5ee15198318af6d55.zip
Entry: add archived_at property and updateArchived method
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/BrowserImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/BrowserImport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/BrowserImport.php b/src/Wallabag/ImportBundle/Import/BrowserImport.php
index 225f1791..614386cb 100644
--- a/src/Wallabag/ImportBundle/Import/BrowserImport.php
+++ b/src/Wallabag/ImportBundle/Import/BrowserImport.php
@@ -133,7 +133,7 @@ abstract class BrowserImport extends AbstractImport
133 ); 133 );
134 } 134 }
135 135
136 $entry->setArchived($data['is_archived']); 136 $entry->updateArchived($data['is_archived']);
137 137
138 if (!empty($data['created_at'])) { 138 if (!empty($data['created_at'])) {
139 $dt = new \DateTime(); 139 $dt = new \DateTime();