Switch FeedParser back to described behavior for setting 'error'.

Also some formatting.
This commit is contained in:
wn_ 2021-11-17 19:29:42 +00:00
parent aeb4137cbd
commit fb1e85baaf
1 changed files with 6 additions and 4 deletions

View File

@ -42,8 +42,10 @@ class FeedParser {
if ($error) {
foreach (libxml_get_errors() as $error) {
if ($error->level == LIBXML_ERR_FATAL) {
if ($this->error) //currently only the first error is reported
// currently only the first error is reported
if (!isset($this->error)) {
$this->error = $this->format_error($error);
}
$this->libxml_errors[] = $this->format_error($error);
}
}