X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FXML.php;h=daaf0a6772599eaecfc995132f72e7dc51db323d;hb=c364957e71dd780bf53dc65e0cf4ea10187b4417;hp=7eaa32040e29f7c418969562d0814eea7f45cf72;hpb=be2fb01f90f5f299dd07402a41fed7c7c7567f00;p=civicrm-core.git diff --git a/CRM/Utils/XML.php b/CRM/Utils/XML.php index 7eaa32040e..daaf0a6772 100644 --- a/CRM/Utils/XML.php +++ b/CRM/Utils/XML.php @@ -40,8 +40,10 @@ class CRM_Utils_XML { * (0 => SimpleXMLElement|FALSE, 1 => errorMessage|FALSE) */ public static function parseFile($file) { - $xml = FALSE; // SimpleXMLElement - $error = FALSE; // string + // SimpleXMLElement + $xml = FALSE; + // string + $error = FALSE; if (!file_exists($file)) { $error = 'File ' . $file . ' does not exist.'; @@ -72,8 +74,10 @@ class CRM_Utils_XML { * (0 => SimpleXMLElement|FALSE, 1 => errorMessage|FALSE) */ public static function parseString($string) { - $xml = FALSE; // SimpleXMLElement - $error = FALSE; // string + // SimpleXMLElement + $xml = FALSE; + // string + $error = FALSE; $oldLibXMLErrors = libxml_use_internal_errors(); libxml_use_internal_errors(TRUE);