X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/177fd6fefd2e3d5a0ea6591c71d660cabdb3c1a4..48ab98cb1779cf2088c1351ac3dd3d0da6fb31d3:/wp-includes/atomlib.php diff --git a/wp-includes/atomlib.php b/wp-includes/atomlib.php index 9c2335c6..9d34276a 100644 --- a/wp-includes/atomlib.php +++ b/wp-includes/atomlib.php @@ -1,13 +1,13 @@ - * @version: 0.4 - * @since 2.3 + * @author Elias Torres + * @version 0.4 + * @since 2.3.0 */ /** @@ -131,8 +131,8 @@ class AtomParser { if(!xml_parse($parser, $data, feof($fp))) { trigger_error(sprintf(__('XML error: %s at line %d')."\n", - xml_error_string(xml_get_error_code($xml_parser)), - xml_get_current_line_number($xml_parser))); + xml_error_string(xml_get_error_code($parser)), + xml_get_current_line_number($parser))); $ret = false; break; } @@ -350,5 +350,3 @@ class AtomParser { $string ); } } - -?>