aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper/EntriesExport.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Helper/EntriesExport.php')
-rw-r--r--src/Wallabag/CoreBundle/Helper/EntriesExport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/EntriesExport.php b/src/Wallabag/CoreBundle/Helper/EntriesExport.php
index a2aa4d13..f981ee50 100644
--- a/src/Wallabag/CoreBundle/Helper/EntriesExport.php
+++ b/src/Wallabag/CoreBundle/Helper/EntriesExport.php
@@ -188,7 +188,7 @@ class EntriesExport
188 foreach ($entry->getTags() as $tag) { 188 foreach ($entry->getTags() as $tag) {
189 $book->setSubject($tag->getLabel()); 189 $book->setSubject($tag->getLabel());
190 } 190 }
191 $filename = sha1($entry->getTitle()); 191 $filename = sha1(sprintf('%s:%s', $entry->getUrl(), $entry->getTitle()));
192 192
193 $publishedBy = $entry->getPublishedBy(); 193 $publishedBy = $entry->getPublishedBy();
194 $authors = $this->translator->trans('export.unknown'); 194 $authors = $this->translator->trans('export.unknown');