remove unused format_libxml_error
This commit is contained in:
parent
ae962a96fd
commit
8ef0ca2fa6
|
@ -1710,18 +1710,6 @@
|
||||||
$url = key($feedUrls);
|
$url = key($feedUrls);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* libxml_use_internal_errors(true);
|
|
||||||
$doc = new DOMDocument();
|
|
||||||
$doc->loadXML($contents);
|
|
||||||
$error = libxml_get_last_error();
|
|
||||||
libxml_clear_errors();
|
|
||||||
|
|
||||||
if ($error) {
|
|
||||||
$error_message = format_libxml_error($error);
|
|
||||||
|
|
||||||
return array("code" => 6, "message" => $error_message);
|
|
||||||
} */
|
|
||||||
|
|
||||||
if ($cat_id == "0" || !$cat_id) {
|
if ($cat_id == "0" || !$cat_id) {
|
||||||
$cat_qpart = "NULL";
|
$cat_qpart = "NULL";
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -2404,9 +2404,4 @@
|
||||||
return LABEL_BASE_INDEX - 1 + abs($feed);
|
return LABEL_BASE_INDEX - 1 + abs($feed);
|
||||||
}
|
}
|
||||||
|
|
||||||
function format_libxml_error($error) {
|
|
||||||
return T_sprintf("LibXML error %s at line %d (column %d): %s",
|
|
||||||
$error->code, $error->line, $error->column,
|
|
||||||
$error->message);
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue