aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-02 13:49:22 -0700
committerMario Vavti <mario@mariovavti.com>2018-05-03 12:34:35 +0200
commit1f429a003386bbf11f26c9caea4b18b01cf09ef2 (patch)
tree730e49425a0e2baf8163c79657868a53287d61e1 /include/network.php
parenta3ed0b94cd5d43c70a835a6ed7226f5645f1c121 (diff)
downloadvolse-hubzilla-1f429a003386bbf11f26c9caea4b18b01cf09ef2.tar.gz
volse-hubzilla-1f429a003386bbf11f26c9caea4b18b01cf09ef2.tar.bz2
volse-hubzilla-1f429a003386bbf11f26c9caea4b18b01cf09ef2.zip
hubzilla issue #1151 - activitypub mention gets bookmarked
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php
index 8b7490a8a..a00ede6bf 100644
--- a/include/network.php
+++ b/include/network.php
@@ -797,7 +797,7 @@ function xml2array($contents, $namespaces = true, $get_attributes=1, $priority =
if($namespaces)
$parser = @xml_parser_create_ns("UTF-8",':');
else
- $parser = @xml_parser_create();
+ $parser = @xml_parser_create('UTF-8');
if(! $parser) {
logger('xml2array: xml_parser_create: no resource');
@@ -807,7 +807,7 @@ function xml2array($contents, $namespaces = true, $get_attributes=1, $priority =
xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
// http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss
xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
- xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
+ xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 0);
@xml_parse_into_struct($parser, trim($contents), $xml_values);
@xml_parser_free($parser);