Minor fixes

This commit is contained in:
Graham Campbell
2015-01-01 15:53:18 +00:00
parent fd022f1413
commit 860d5e8cbe
2 changed files with 3 additions and 3 deletions

View File

@@ -19,9 +19,9 @@ class RssController extends Controller
{
$feed = RssFacade::feed('2.0', 'UTF-8');
$feed->channel([
'title' => Setting::get('app_name'),
'title' => Setting::get('app_name'),
'description' => 'Status Feed',
'link' => Setting::get('app_domain'),
'link' => Setting::get('app_domain'),
]);
Incident::get()->map(function ($incident) use ($feed) {