From 14b394c72a21fbfd44e90767d7032cdc72d8e72b Mon Sep 17 00:00:00 2001 From: András Marczinkó Date: Tue, 11 Nov 2025 22:55:18 +0100 Subject: Fix duplicate semicolon in entry_header (#8203) * Fix duplicate semicolon in entry_header * Fix some more redundant syntax Co-authored-by: Inverle --------- Co-authored-by: Inverle --- app/views/helpers/index/normal/entry_header.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') 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; -- cgit v1.2.3