From 96c607d2da295207ec6d9689c61f71d5d147b19a Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Mon, 30 Jan 2012 09:10:05 +0000 Subject: [PATCH] Fixed fatal error calling identifyOutputDir on parent folder --- source/lib/DownloadDispatcher/Source/Plugin/TV.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/DownloadDispatcher/Source/Plugin/TV.class.php b/source/lib/DownloadDispatcher/Source/Plugin/TV.class.php index 11cae9e..c2ebebc 100644 --- a/source/lib/DownloadDispatcher/Source/Plugin/TV.class.php +++ b/source/lib/DownloadDispatcher/Source/Plugin/TV.class.php @@ -109,7 +109,7 @@ class DownloadDispatcher_Source_Plugin_TV extends DownloadDispatcher_Source_Plug // Filename not recognised, try the parent directory name instead if ($try_parent) { - return identifyOutputDir(dirname($dir), basename($dir), false); + return $this->identifyOutputDir(dirname($dir), basename($dir), false); } throw new DownloadDispatcher_Exception_UnidentifiedContent($file);