diff options
author | git-marijus <mario@mariovavti.com> | 2017-08-10 09:40:02 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2017-08-10 09:40:02 +0200 |
commit | d1c7e789902a09b1ebdd9ae2e388a18f92467e43 (patch) | |
tree | 49ea423e4a22e5516431aa12d8bf6f7679bede33 /include/network.php | |
parent | 09da109ebaf1b5f287db7065eaee5026b0a88eb1 (diff) | |
parent | 0a96cdd950f30974fe0fecf60b214701673dad86 (diff) | |
download | volse-hubzilla-d1c7e789902a09b1ebdd9ae2e388a18f92467e43.tar.gz volse-hubzilla-d1c7e789902a09b1ebdd9ae2e388a18f92467e43.tar.bz2 volse-hubzilla-d1c7e789902a09b1ebdd9ae2e388a18f92467e43.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/network.php b/include/network.php index fa49e5765..cd6e980ff 100644 --- a/include/network.php +++ b/include/network.php @@ -671,11 +671,12 @@ function parse_xml_string($s,$strict = true) { libxml_use_internal_errors(true); $x = @simplexml_load_string($s2); - if(! $x) { + if($x === false) { logger('libxml: parse: error: ' . $s2, LOGGER_DATA); - foreach(libxml_get_errors() as $err) - logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA); - + foreach(libxml_get_errors() as $err) { + logger('libxml: parse: ' . $err->code . ' at ' . $err->line + . ':' . $err->column . ' : ' . $err->message, LOGGER_DATA); + } libxml_clear_errors(); } |