mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-12 11:31:00 +02:00
parser: experimentally set preservewhitespace to false
This commit is contained in:
parent
6bb051285e
commit
b69d94eeeb
@ -27,6 +27,7 @@ class FeedParser {
|
|||||||
libxml_use_internal_errors(true);
|
libxml_use_internal_errors(true);
|
||||||
libxml_clear_errors();
|
libxml_clear_errors();
|
||||||
$this->doc = new DOMDocument();
|
$this->doc = new DOMDocument();
|
||||||
|
$this->doc->preserveWhiteSpace = false;
|
||||||
$this->doc->loadXML($data);
|
$this->doc->loadXML($data);
|
||||||
|
|
||||||
mb_substitute_character("none");
|
mb_substitute_character("none");
|
||||||
@ -41,6 +42,7 @@ class FeedParser {
|
|||||||
libxml_clear_errors();
|
libxml_clear_errors();
|
||||||
|
|
||||||
$this->doc = new DOMDocument();
|
$this->doc = new DOMDocument();
|
||||||
|
$this->doc->preserveWhiteSpace = false;
|
||||||
$this->doc->loadXML($data);
|
$this->doc->loadXML($data);
|
||||||
|
|
||||||
$error = libxml_get_last_error();
|
$error = libxml_get_last_error();
|
||||||
@ -64,6 +66,7 @@ class FeedParser {
|
|||||||
libxml_clear_errors();
|
libxml_clear_errors();
|
||||||
|
|
||||||
$this->doc = new DOMDocument();
|
$this->doc = new DOMDocument();
|
||||||
|
$this->doc->preserveWhiteSpace = false;
|
||||||
$this->doc->loadXML($data);
|
$this->doc->loadXML($data);
|
||||||
|
|
||||||
$error = libxml_get_last_error();
|
$error = libxml_get_last_error();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user