diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-01-15 09:49:22 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-01-15 09:49:22 +0100 |
commit | 3afc87426dade0eaeccf69d144a119c6f0c4534f (patch) | |
tree | 0162eaa8c3fafac5a4c6610415490739e0fb4807 /src/Wallabag/ImportBundle | |
parent | 5419a8368ebb4b4d57f481b842f1fcc576c9149d (diff) | |
download | wallabag-3afc87426dade0eaeccf69d144a119c6f0c4534f.tar.gz wallabag-3afc87426dade0eaeccf69d144a119c6f0c4534f.tar.zst wallabag-3afc87426dade0eaeccf69d144a119c6f0c4534f.zip |
CS
Diffstat (limited to 'src/Wallabag/ImportBundle')
-rw-r--r-- | src/Wallabag/ImportBundle/Import/InstapaperImport.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/InstapaperImport.php b/src/Wallabag/ImportBundle/Import/InstapaperImport.php index df1d6666..44c034f8 100644 --- a/src/Wallabag/ImportBundle/Import/InstapaperImport.php +++ b/src/Wallabag/ImportBundle/Import/InstapaperImport.php | |||
@@ -62,7 +62,7 @@ class InstapaperImport extends AbstractImport | |||
62 | } | 62 | } |
63 | 63 | ||
64 | $entries = []; | 64 | $entries = []; |
65 | $handle = fopen($this->filepath, 'rb'); | 65 | $handle = fopen($this->filepath, 'r'); |
66 | while (false !== ($data = fgetcsv($handle, 10240))) { | 66 | while (false !== ($data = fgetcsv($handle, 10240))) { |
67 | if ('URL' === $data[0]) { | 67 | if ('URL' === $data[0]) { |
68 | continue; | 68 | continue; |