mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-12 16:58:37 +00:00
php-cs-fixer
php bin/php-cs-fixer fix src/Wallabag/CoreBundle/Helper/EntriesExport.php
This commit is contained in:
parent
c779373f2c
commit
385e651684
1 changed files with 24 additions and 24 deletions
|
@ -188,8 +188,8 @@ class EntriesExport
|
||||||
// in filenames, we limit to A-z/0-9
|
// in filenames, we limit to A-z/0-9
|
||||||
$filename = preg_replace('/[^A-Za-z0-9\-]/', '', $entry->getTitle());
|
$filename = preg_replace('/[^A-Za-z0-9\-]/', '', $entry->getTitle());
|
||||||
|
|
||||||
$titlepage = $content_start . "<h1>".$entry->getTitle()."</h1>" . $this->getExportInformation('PHPePub') . $bookEnd;
|
$titlepage = $content_start.'<h1>'.$entry->getTitle().'</h1>'.$this->getExportInformation('PHPePub').$bookEnd;
|
||||||
$book->addChapter("Title", 'Title.html', $titlepage, true, EPub::EXTERNAL_REF_ADD);
|
$book->addChapter('Title', 'Title.html', $titlepage, true, EPub::EXTERNAL_REF_ADD);
|
||||||
$chapter = $content_start.$entry->getContent().$bookEnd;
|
$chapter = $content_start.$entry->getContent().$bookEnd;
|
||||||
$book->addChapter($entry->getTitle(), htmlspecialchars($filename).'.html', $chapter, true, EPub::EXTERNAL_REF_ADD);
|
$book->addChapter($entry->getTitle(), htmlspecialchars($filename).'.html', $chapter, true, EPub::EXTERNAL_REF_ADD);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue