From b72468fffc763eefd5ba9c7edf2f76bbed6bea92 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 23 Feb 2016 13:08:35 +0100 Subject: [PATCH] Add missing Music class to MiscSorter. --- Changelog | 2 ++ newznab/MiscSorter.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Changelog b/Changelog index 73b489eef..dd4951472 100755 --- a/Changelog +++ b/Changelog @@ -1,3 +1,5 @@ +2016-02-23 DariusIII + Fix: Add missing Music class to MiscSorter. 2016-02-20 DariusIII Fix: Fix typo for userexcat table in Users.php 2016-02-19 DariusIII diff --git a/newznab/MiscSorter.php b/newznab/MiscSorter.php index a4d8f81fa..673f3c870 100644 --- a/newznab/MiscSorter.php +++ b/newznab/MiscSorter.php @@ -22,6 +22,7 @@ class MiscSorter private $pdo; private $category; private $movie; + private $music; /** * @var array|bool|string @@ -52,6 +53,7 @@ class MiscSorter $this->category = new Categorize(['Settings' => $this->pdo]); $this->movie = new Movie(['Echo' => $this->echooutput, 'Settings' => $this->pdo]); + $this->music = new Music(['Echo' => $this->echooutput, 'Settings' => $this->pdo]); $this->pubkey = $this->pdo->getSetting('amazonpubkey'); $this->privkey = $this->pdo->getSetting('amazonprivkey'); $this->asstag = $this->pdo->getSetting('amazonassociatetag');