From 2b4121e70d7eebefc8019a8c2c4df100234d9c20 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 25 Apr 2018 15:04:02 +0200 Subject: [PATCH] Fix undefined index title on series view --- Changelog | 1 + app/Http/Controllers/SeriesController.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Changelog b/Changelog index 669387afd..2d0bd1d1a 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-04-25 DariusIII + * Fix: Fix undefined index title on series view * Chg: Update query in getVideoById function in Video class * Fix: Fix typo in column name in Releases tvSearch function * Fix: Fix XXX list view diff --git a/app/Http/Controllers/SeriesController.php b/app/Http/Controllers/SeriesController.php index 4ddb0a6c8..88988ea15 100644 --- a/app/Http/Controllers/SeriesController.php +++ b/app/Http/Controllers/SeriesController.php @@ -20,6 +20,10 @@ class SeriesController extends BasePageController { $this->setPrefs(); $releases = new Releases(['Settings' => $this->settings]); + $title = 'Series'; + $meta_title = 'View TV Series'; + $meta_keywords = 'view,series,tv,show,description,details'; + $meta_description = 'View TV Series'; if ($id && ctype_digit($id)) { $category = -1;