From: Roland Haeder Date: Sun, 7 Dec 2014 22:38:20 +0000 (+0100) Subject: Fixed correct config entry. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c894d1d8115d7143eb1abe45508ebf6ad171e9fc;p=hub.git Fixed correct config entry. Signed-off-by: Roland Haeder --- diff --git a/application/hub/main/source/urls/class_CrawlerUploadedListUrlSource.php b/application/hub/main/source/urls/class_CrawlerUploadedListUrlSource.php index 5b1814594..6e51a4c67 100644 --- a/application/hub/main/source/urls/class_CrawlerUploadedListUrlSource.php +++ b/application/hub/main/source/urls/class_CrawlerUploadedListUrlSource.php @@ -57,7 +57,7 @@ class CrawlerUploadedListUrlSource extends BaseUrlSource implements UrlSource, R parent::__construct(__CLASS__); // "Cache" CSV path for faster usage - $this->csvFilePath = $this->getConfigInstance()->getConfigEntry('base_path') . '/' . $this->getConfigInstance()->getConfigEntry('csv_file_path'); + $this->csvFilePath = $this->getConfigInstance()->getConfigEntry('base_path') . '/' . $this->getConfigInstance()->getConfigEntry('crawler_csv_file_path'); // Initialize directory instance $directoryInstance = ObjectFactory::createObjectByConfiguredName('directory_class', array($this->csvFilePath));