diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index ae6c1e09c9..07ecdf0d09 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-11-28 Sergio Martin + + * operation/integria_incidents/incident.php: Fixed check of + empty xml + 2011-11-28 Juan Manuel Ramon * include/functions_agents.php: Changed parameter in diff --git a/pandora_console/operation/integria_incidents/incident.php b/pandora_console/operation/integria_incidents/incident.php index d08b9903cc..ff32fa93b9 100755 --- a/pandora_console/operation/integria_incidents/incident.php +++ b/pandora_console/operation/integria_incidents/incident.php @@ -232,7 +232,14 @@ else { // If is a valid XML, parse it if(xml_parse(xml_parser_create(), $xml)) { - $result = incidents_xml_to_array($xml); + // Check if xml is empty + if($xml == "\n\n") { + $result = false; + } + else { + $result = incidents_xml_to_array($xml); + } + if($result == false) { $result = array(); }