mirror of
https://github.com/standardebooks/web.git
synced 2025-07-22 15:24:46 -04:00
Fix double encoded ampersands in title strings
This commit is contained in:
parent
46789303bd
commit
876234ef9c
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ class Ebook{
|
|||
$this->AuthorsHtml = $this->GenerateContributorList($this->Authors);
|
||||
|
||||
// Now the complete title with credits.
|
||||
$this->TitleWithCreditsHtml = Formatter::ToPlainText($this->Title) . ', by ' . $this->AuthorsHtml . $titleContributors;
|
||||
$this->TitleWithCreditsHtml = Formatter::ToPlainText($this->Title) . ', by ' . str_replace('&', '&', $this->AuthorsHtml . $titleContributors);
|
||||
}
|
||||
|
||||
public function Contains(string $query): bool{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue