diff --git a/app/Http/Controllers/Dashboard/DashboardController.php b/app/Http/Controllers/Dashboard/DashboardController.php index 0c1c55e7..e21f28f3 100644 --- a/app/Http/Controllers/Dashboard/DashboardController.php +++ b/app/Http/Controllers/Dashboard/DashboardController.php @@ -106,7 +106,9 @@ class DashboardController extends Controller $entries = null; if ($feed = $this->feed->latest()) { - $entries = array_slice($feed->channel->item, 0, 5); + if ($feed !== 1) { + $entries = array_slice($feed->channel->item, 0, 5); + } } return View::make('dashboard.index')