]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
EntriesExport/epub: revert c779373f, move exportinfo to the end of the book
authorKevin Decherf <kevin@kdecherf.com>
Sun, 6 Jan 2019 18:23:01 +0000 (19:23 +0100)
committerKevin Decherf <kevin@kdecherf.com>
Mon, 7 Jan 2019 20:43:16 +0000 (21:43 +0100)
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
src/Wallabag/CoreBundle/Helper/EntriesExport.php

index ea5a03cf365d7f84e6cbe30b26159d87eb2b94e3..92f1779c547d7e7516baa6132e297117545be2ea 100644 (file)
@@ -188,7 +188,7 @@ class EntriesExport
             }
             $filename = sha1($entry->getTitle());
 
-            $titlepage = $content_start . '<h1>' . $entry->getTitle() . '</h1>' . $this->getExportInformation('PHPePub') . $bookEnd;
+            $titlepage = $content_start . '<h1>' . $entry->getTitle() . '</h1>' . $bookEnd;
             $book->addChapter("Entry {$i} of {$entryCount}", "{$filename}_cover.html", $titlepage, true, EPub::EXTERNAL_REF_ADD);
             $chapter = $content_start . $entry->getContent() . $bookEnd;
 
@@ -196,6 +196,8 @@ class EntriesExport
             $book->addChapter($entry->getTitle(), "{$filename}.html", $chapter, true, EPub::EXTERNAL_REF_ADD);
         }
 
+        $book->addChapter('Notices', 'Cover2.html', $content_start . $this->getExportInformation('PHPePub') . $bookEnd);
+
         // Could also be the ISBN number, prefered for published books, or a UUID.
         $hash = sha1(sprintf('%s:%s', $this->wallabagUrl, implode(',', $entryIds)));
         $book->setIdentifier(sprintf('urn:wallabag:%s', $hash), EPub::IDENTIFIER_URI);