From 5898c26a3b107f329a33a00283837290565f3c60 Mon Sep 17 00:00:00 2001 From: phl0 Date: Tue, 3 Mar 2026 12:56:23 +0100 Subject: [PATCH] Lower first char --- application/controllers/Awards.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 7f96d1bd0..4712c64ba 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -575,7 +575,7 @@ class Awards extends CI_Controller { // Render Page $data['page_title'] = __("Log View")." - " . $type; $data['filter'] = (($type != $band) ? $type : '')." ".$searchphrase." ".__("and")." "; - $data['filter'] .= ($band == 'All' ? __("Every band (w/o SAT)") : __("band")." ".$band); + $data['filter'] .= ($band == 'All' ? lcfirst(__("Every band (w/o SAT)")) : __("band")." ".$band); if ($band == 'SAT') { if ($sat != 'All' && $sat != null) { $data['filter'] .= __(" and satellite ").$sat;