aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorTobias Hößl <tobias@hoessl.eu>2012-04-17 11:33:50 +0000
committerTobias Hößl <tobias@hoessl.eu>2012-04-17 11:33:50 +0000
commit720c8324c7572ebf51e4083430e060900cb30750 (patch)
tree8852cf4a64f42499825cbe46ba295082ce1cc515 /include/network.php
parenta7421990350e2409ee90957dab37e1ff1fc272df (diff)
downloadvolse-hubzilla-720c8324c7572ebf51e4083430e060900cb30750.tar.gz
volse-hubzilla-720c8324c7572ebf51e4083430e060900cb30750.tar.bz2
volse-hubzilla-720c8324c7572ebf51e4083430e060900cb30750.zip
Some Bugfixes, and variable checks
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php
index 8c678a443..4bec4a172 100644
--- a/include/network.php
+++ b/include/network.php
@@ -172,7 +172,7 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
$url_parsed = @parse_url($newurl);
if (isset($url_parsed)) {
$redirects++;
- return fetch_url($newurl,$binary,$redirects,$timeout);
+ return fetch_url($newurl,false,$redirects,$timeout);
}
}
$a->set_curl_code($http_code);
@@ -206,6 +206,7 @@ function xml_status($st, $message = '') {
if(! function_exists('http_status_exit')) {
function http_status_exit($val) {
+ $err = '';
if($val >= 400)
$err = 'Error';
if($val >= 200 && $val < 300)
@@ -452,7 +453,7 @@ function lrdd($uri, $debug = false) {
logger('lrdd: parse error: ' . $e);
}
- if($dom) {
+ if(isset($dom) && $dom) {
$items = $dom->getElementsByTagName('link');
foreach($items as $item) {
$x = $item->getAttribute('rel');