diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-18 03:04:15 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-18 03:04:15 -0700 |
commit | 4111ba8dee5562bb3314e72e05ba01de152cecc2 (patch) | |
tree | 0688f4ef391b925e952509d4d72a719cd826db22 /include | |
parent | 035449e4a3f243dcaa43c34259d489c31d9c7ebf (diff) | |
download | volse-hubzilla-4111ba8dee5562bb3314e72e05ba01de152cecc2.tar.gz volse-hubzilla-4111ba8dee5562bb3314e72e05ba01de152cecc2.tar.bz2 volse-hubzilla-4111ba8dee5562bb3314e72e05ba01de152cecc2.zip |
php warnings
Diffstat (limited to 'include')
-rw-r--r-- | include/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php index 4ea619bf5..96cea4b6f 100644 --- a/include/network.php +++ b/include/network.php @@ -1291,7 +1291,7 @@ function fetch_xrd_links($url) { return array(); $h = parse_xml_string($xml); - if(! $h) + if($h === false) return array(); $arr = convert_xml_element_to_array($h); |