mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Add missing Music class to MiscSorter.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user