diff options
| author | 2025-11-11 22:55:18 +0100 | |
|---|---|---|
| committer | 2025-11-11 22:55:18 +0100 | |
| commit | 14b394c72a21fbfd44e90767d7032cdc72d8e72b (patch) | |
| tree | 478bbfedcbc15e19e10fefeedbed3c483d06a533 /app | |
| parent | a18c35046daee15e7ac5f85db290d54541a03e3c (diff) | |
Fix duplicate semicolon in entry_header (#8203)
* Fix duplicate semicolon in entry_header
* Fix some more redundant syntax
Co-authored-by: Inverle <inverle@proton.me>
---------
Co-authored-by: Inverle <inverle@proton.me>
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/helpers/index/normal/entry_header.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/index/normal/entry_header.phtml b/app/views/helpers/index/normal/entry_header.phtml index f1c5e22f5..7172d5f2d 100644 --- a/app/views/helpers/index/normal/entry_header.phtml +++ b/app/views/helpers/index/normal/entry_header.phtml @@ -4,7 +4,7 @@ $topline_read = FreshRSS_Context::userConf()->topline_read; $topline_favorite = FreshRSS_Context::userConf()->topline_favorite; $topline_myLabels = FreshRSS_Context::userConf()->topline_myLabels; - $topline_sharing = FreshRSS_Context::userConf()->topline_sharing && (count(FreshRSS_Context::userConf()->sharing) > 0);; + $topline_sharing = FreshRSS_Context::userConf()->topline_sharing && count(FreshRSS_Context::userConf()->sharing) > 0; $topline_website = FreshRSS_Context::userConf()->topline_website; $topline_thumbnail = FreshRSS_Context::userConf()->topline_thumbnail; $topline_summary = FreshRSS_Context::userConf()->topline_summary; |
