diff options
| author | 2022-11-07 08:34:12 +0100 | |
|---|---|---|
| committer | 2022-11-07 08:34:12 +0100 | |
| commit | 5897487f2f29cd3f29b538919c57988f118461e7 (patch) | |
| tree | 373c14d17e6906baaf7d09418002a053628734d1 /app/Models/Entry.php | |
| parent | f2fe9e2ff36efdf6861ed6ab58d820787d62f8d7 (diff) | |
Fix path_entries encoding (#4823)
* Fix path_entries encoding
#fix https://github.com/FreshRSS/FreshRSS/issues/4815
* Fix preview
Diffstat (limited to 'app/Models/Entry.php')
| -rw-r--r-- | app/Models/Entry.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 12cef68a5..47fcf3b4a 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -184,6 +184,7 @@ class FreshRSS_Entry extends Minz_Model { return null; } + /** @return string HTML-encoded link of the entry */ public function link(): string { return $this->link; } @@ -589,10 +590,10 @@ class FreshRSS_Entry extends Minz_Model { $this->content = $entry->content(); } else { try { - // l’article n’est pas en BDD, on va le chercher sur le site + // The article is not yet in the database, so let’s fetch it $fullContent = self::getContentByParsing( htmlspecialchars_decode($this->link(), ENT_QUOTES), - $feed->pathEntries(), + htmlspecialchars_decode($feed->pathEntries(), ENT_QUOTES), $feed->attributes() ); if ('' !== $fullContent) { |
