mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-03 03:38:52 +00:00
Rename PProcess class into PostProcess, adjust other scripts and classes for the change.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
require_once(dirname(__FILE__) . "/config.php");
|
||||
|
||||
use newznab\db\Settings;
|
||||
use newznab\processing\PProcess;
|
||||
use newznab\processing\PostProcess;
|
||||
|
||||
$pdo = new Settings();
|
||||
|
||||
@@ -136,7 +136,7 @@ if (!isset($argv[1])) {
|
||||
$nzbcontents = new NZBContents(
|
||||
array(
|
||||
'Echo' => true, 'NNTP' => $nntp, 'Nfo' => $Nfo, 'Settings' => $pdo,
|
||||
'PostProcess' => new PProcess(['Settings' => $pdo, 'Nfo' => $Nfo, 'NameFixer' => $namefixer])
|
||||
'PostProcess' => new PostProcess(['Settings' => $pdo, 'Nfo' => $Nfo, 'NameFixer' => $namefixer])
|
||||
)
|
||||
);
|
||||
foreach ($releases as $release) {
|
||||
|
||||
Reference in New Issue
Block a user