From 3c97a446c7c170625e51b02058d2d560b227c4d0 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 17 Sep 2012 09:50:13 +0000
Subject: [PATCH] Poprawa błędu w klasie BotSession powodującego wielokrotne tworzenie wpisów w bazie danych sesyjnych (class=NULL, name=user_struct).
---
class/DownloadHelper.php | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/class/DownloadHelper.php b/class/DownloadHelper.php
index 45cc866..6100222 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'].(isset($components['path']) && !empty($components['path']) ? $components['path'] : '/').(isset($components['query']) && !empty($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