Add missing Music class to MiscSorter.

This commit is contained in:
DariusIII
2016-02-23 13:08:35 +01:00
parent d14350ca28
commit b72468fffc
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -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
+2
View File
@@ -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');