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).
This commit is contained in:
Greg Karékinian
2015-07-31 10:02:34 +02:00
parent 043690764d
commit 68c458227f

View File

@@ -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'),
]);
}
}