From 2b0a497d851fdee44a2ce13ae86263f18fa8bb87 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 20 Feb 2018 15:33:59 +0100 Subject: [PATCH] Remove references to groups from PostpProcess and Backfill (fixes issue #398) --- Blacklight/Backfill.php | 2 +- Blacklight/processing/PostProcess.php | 2 +- Changelog | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Blacklight/Backfill.php b/Blacklight/Backfill.php index 847dbc19f..b804d1391 100755 --- a/Blacklight/Backfill.php +++ b/Blacklight/Backfill.php @@ -129,7 +129,7 @@ class Backfill } $this->_binaries = new Binaries( - ['NNTP' => $this->_nntp, 'Echo' => $this->_echoCLI, 'Settings' => $this->pdo, 'Groups' => $this->_groups] + ['NNTP' => $this->_nntp, 'Echo' => $this->_echoCLI, 'Settings' => $this->pdo] ); if ($articles !== '' && ! is_numeric($articles)) { diff --git a/Blacklight/processing/PostProcess.php b/Blacklight/processing/PostProcess.php index 9cb3521a1..1864c5bc4 100755 --- a/Blacklight/processing/PostProcess.php +++ b/Blacklight/processing/PostProcess.php @@ -280,7 +280,7 @@ class PostProcess */ public function processAdditional(&$nntp, $groupID = '', $guidChar = ''): void { - (new ProcessAdditional(['Echo' => $this->echooutput, 'NNTP' => $nntp, 'Settings' => $this->pdo, 'Groups' => $this->groups, 'NameFixer' => $this->nameFixer, 'Nfo' => $this->Nfo]))->start($groupID, $guidChar); + (new ProcessAdditional(['Echo' => $this->echooutput, 'NNTP' => $nntp, 'Settings' => $this->pdo, 'NameFixer' => $this->nameFixer, 'Nfo' => $this->Nfo]))->start($groupID, $guidChar); } /** diff --git a/Changelog b/Changelog index d47c837fd..b9e870956 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-02-20 DariusIII + * FIx: Remove references to groups from PostpProcess and Backfill (fixes issue #398) * Chg: Add imdbphp/imdbphp package and use it to fetch imdb movie data * Chg: Update TMDB class * Chg: Check for imdbid string lenghth in fetchTMDBProperties function