From 8e46a08fc0d7726bcc479ccf8cfb936d2335781d Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 25 Apr 2018 14:47:21 +0200 Subject: [PATCH] Fix typo in column name in Releases tvSearch function --- Blacklight/Releases.php | 2 +- Changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Blacklight/Releases.php b/Blacklight/Releases.php index 97a645eb4..a75d0a65f 100755 --- a/Blacklight/Releases.php +++ b/Blacklight/Releases.php @@ -778,7 +778,7 @@ class Releases $query->on('r.videos_id', '=', 'v.id') ->where('v.type', '=', 0); }) - ->leftJoin('tv_info as tvi', 'tvi.id', '=', 'r.tv_episodes_id') + ->leftJoin('tv_info as tvi', 'tvi.videos_id', '=', 'r.tv_episodes_id') ->leftJoin('tv_episodes as tve', 'tve.id', '=', 'r.tv_episodes_id') ->leftJoin('categories as c', 'c.id', '=', 'r.categories_id') ->leftJoin('categories as cp', 'cp.id', '=', 'c.parentid') diff --git a/Changelog b/Changelog index 6c0c661e6..d74f4e5b2 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-04-25 DariusIII + * Fix: Fix typo in column name in Releases tvSearch function * Fix: Fix XXX list view * Fix: Fix admin predb search * Fix: Update Predb model getAll function PHPDOC block