forked from GNUsocial/gnu-social
Revert "DEBUG HACK: error checking for xml_parse in XMPPHP input stream"
This reverts commit 906450e2f5
.
1) It was a quick debug hack 2) it doesn't meet the requirements
for changing extlib/ libraries
This commit is contained in:
parent
2a3cb86e29
commit
7679f058ef
@ -417,12 +417,7 @@ class XMPPHP_XMLStream {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
|
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
|
||||||
$ok = xml_parse($this->parser, $buff, false);
|
xml_parse($this->parser, $buff, false);
|
||||||
if (!$ok) {
|
|
||||||
$errcode = xml_get_error_code($this->parser);
|
|
||||||
$errstr = xml_error_string($errcode);
|
|
||||||
$this->log->log("XML ERROR: $errstr", XMPPHP_Log::LEVEL_VERBOSE);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
# $updated == 0 means no changes during timeout.
|
# $updated == 0 means no changes during timeout.
|
||||||
}
|
}
|
||||||
@ -676,12 +671,7 @@ class XMPPHP_XMLStream {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
|
$this->log->log("RECV: $buff", XMPPHP_Log::LEVEL_VERBOSE);
|
||||||
$ok = xml_parse($this->parser, $buff, false);
|
xml_parse($this->parser, $buff, false);
|
||||||
if (!$ok) {
|
|
||||||
$errcode = xml_get_error_code($this->parser);
|
|
||||||
$errstr = xml_error_string($errcode);
|
|
||||||
$this->log->log("XML ERROR: $errstr", XMPPHP_Log::LEVEL_VERBOSE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user