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/Category.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/Category.php')
| -rw-r--r-- | app/Models/Category.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Models/Category.php b/app/Models/Category.php index e5da764d3..c4ca12fd3 100644 --- a/app/Models/Category.php +++ b/app/Models/Category.php @@ -54,6 +54,7 @@ class FreshRSS_Category extends Minz_Model { public function kind(): int { return $this->kind; } + /** @return string HTML-encoded name of the category */ public function name(): string { return $this->name; } |
