From 8a5d946f56106b2d2e368c636dfbed2358a3a81f Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Sun, 16 Sep 2012 21:21:38 +0000 Subject: [PATCH] 1. Dodanie pliku upgrade.php przypisującego zmiennym sesyjnym o nazwie 'kino' modułu 'kino' - powodem jest niepoprawne użycie klasy BotSession w module kino. 2. Uwzględnienie w instrukcjach instalacji/aktualizacji konieczności wykonania w/w pliku. 3. Zezwolenie na uruchomienie upgrade.php w .htaccess 4. Poprawienie miejsca, w którym deklarowana jest stała BOT_TOPDIR. --- class/DownloadHelper.php | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/class/DownloadHelper.php b/class/DownloadHelper.php index 45cc866..9059c13 100644 --- a/class/DownloadHelper.php +++ b/class/DownloadHelper.php @@ -3,14 +3,14 @@ protected $url; protected $curl; protected $headers = array(); - protected $data = NULL; + protected $return = NULL; protected $cacheDir = './cache/'; protected $cacheFile; protected $cacheInfo = array(); function build_url($components) { - return $components['scheme'].'://'.($components['user'] ? $components['user'].($components['pass'] ? ':'.$components['pass'] : '').'@' : '').$components['host'].($components['path'] ? $components['path'] : '/').($components['query'] ? '?'.$components['query'] : ''); + return $components['scheme'].'://'.(isset($components['user']) && !empty($components['user']) ? $components['user'].(isset($components['pass']) && !empty($components['pass']) ? ':'.$components['pass'] : '').'@' : '').$components['host'].($components['path'] ? $components['path'] : '/').($components['query'] ? '?'.$components['query'] : ''); } function __construct($url) { @@ -111,7 +111,6 @@ $this->cacheInfo['last_updated'] = time(); $info = $this->getinfo(); - var_dump($info); if($info['http_code'] == '304') { // Plik się nie zmienił... -- Gitblit v1.9.1