From 68c458227fa67973026dace13e893d24b7358f6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Kar=C3=A9kinian?= Date: Fri, 31 Jul 2015 10:02:34 +0200 Subject: [PATCH] Do not append "Status" to the site name Currently the title of the index is the site name set in the settings is appended with "Status". This is confusing because the RSS feeds show the site name without it (and you probably want to write "Status" in the site name yourself anyway). --- app/Http/Controllers/HomeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 24e06b68..cfac9f68 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -112,7 +112,7 @@ class HomeController extends AbstractController 'canPageBackward' => $canPageBackward, 'previousDate' => $startDate->copy()->subDays($daysToShow)->toDateString(), 'nextDate' => $startDate->copy()->addDays($daysToShow)->toDateString(), - 'page_title' => Setting::get('app_name').' Status', + 'page_title' => Setting::get('app_name'), ]); } }