summaryrefslogtreecommitdiffstats
path: root/inc/download.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2015-09-11 17:11:33 +0200
committerSimon Rettberg2015-09-11 17:11:33 +0200
commit3fd230bb501337153771098083e1379875d98235 (patch)
tree15f9338b6bb235b7be7232ca8e011c5fdb92a82b /inc/download.inc.php
parentAdd org list to dozmod module (diff)
downloadslx-admin-3fd230bb501337153771098083e1379875d98235.tar.gz
slx-admin-3fd230bb501337153771098083e1379875d98235.tar.xz
slx-admin-3fd230bb501337153771098083e1379875d98235.zip
Image delete feature
Diffstat (limited to 'inc/download.inc.php')
-rw-r--r--inc/download.inc.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/inc/download.inc.php b/inc/download.inc.php
index 5347e2ee..51601545 100644
--- a/inc/download.inc.php
+++ b/inc/download.inc.php
@@ -69,11 +69,13 @@ class Download
public static function asStringPost($url, $params, $timeout, &$code)
{
$string = '';
- foreach ($params as $k => $v) {
- if (!empty($string)) {
- $string .= '&';
+ if (is_array($params)) {
+ foreach ($params as $k => $v) {
+ if (!empty($string)) {
+ $string .= '&';
+ }
+ $string .= $k . '=' . urlencode($v);
}
- $string .= $k . '=' . urlencode($v);
}
$ch = self::initCurl($url, $timeout, $head);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
@@ -115,7 +117,7 @@ class Download
return false;
}
if (preg_match_all('#\bHTTP/\d+\.\d+ (\d+) #', $head, $out, PREG_SET_ORDER)) {
- $code = (int) $out[count($out)-1][1];
+ $code = (int) $out[count($out) - 1][1];
} else {
$code = '999 ' . curl_error($ch);
}