From 6b36e75843ad46385fea0a81da04a7c982bea2a3 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Wed, 11 Jun 2014 20:57:24 +0000
Subject: [PATCH] [mod_data] Poprawka użycia niezdefiniowanej zmiennej
---
class/DownloadHelper.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/class/DownloadHelper.php b/class/DownloadHelper.php
index 25f4c71..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'].'://'.(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'] : '');
+ 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) {
--
Gitblit v1.9.1