forgot to add $path to the $file_url

This commit is contained in:
Michael Kaufmann (d00p)
2010-02-23 07:54:02 +00:00
parent a1561618e9
commit 7aba67af11

View File

@@ -204,7 +204,7 @@ class ApsUpdater extends ApsParser
$path = dirname($Url); $path = dirname($Url);
$file = urlencode(basename($Url)); $file = urlencode(basename($Url));
$file_url = 'http://' . $this->RequestDomain . $file . '.aps' . $Downloads[0]; $file_url = 'http://' . $this->RequestDomain . $path . '/' . $file . '.aps' . $Downloads[0];
//get content from website url //get content from website url
$this->_cronlog->logAction(CRON_ACTION, LOG_NOTICE, "Downloading '" . $file_url . "'"); $this->_cronlog->logAction(CRON_ACTION, LOG_NOTICE, "Downloading '" . $file_url . "'");