diff --git a/Changelog b/Changelog index 4bb85de28..33b920c08 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2015-10-26 DariusIII + Fix: Remove non-existant processTVDB from postprocess. Fix: Typo in array Chg: Revamp TV processing 2015-10-17 DariusIII diff --git a/misc/update_scripts/nix_scripts/tmux/bin/postprocess.php b/misc/update_scripts/nix_scripts/tmux/bin/postprocess.php index d83c275be..69e6e95a8 100644 --- a/misc/update_scripts/nix_scripts/tmux/bin/postprocess.php +++ b/misc/update_scripts/nix_scripts/tmux/bin/postprocess.php @@ -52,7 +52,6 @@ if (!isset($argv[1]) || !in_array($argv[1], $args) || !isset($argv[2]) || !in_ar . "php postprocess.php book true ...: Processes books.\n" . "php postprocess.php anime true ...: Processes anime.\n" . "php postprocess.php tv true ...: Processes tv.\n" - . "php postprocess.php tvdb true ...: Processes tvdb.\n" . "php postprocess.php xxx true ...: Processes xxx.\n" . "php postprocess.php additional true ...: Processes previews/mediainfo/etc...\n" . "php postprocess.php sharing true ...: Processes uploading/downloading comments.\n" @@ -129,9 +128,6 @@ switch ($argv[1]) { case 'tv': $postProcess->processTV('', (isset($argv[3]) && in_array($argv[3], $charArray) ? $argv[3] : '')); break; - case 'tvdb': - $postProcess->processTvDB(); - break; case 'xxx': $postProcess->processXXX(); break;