X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/98a4d31e52bd56c908617df281730bd4ba58d110..c55863f11e8589bf8d4a5698bf15752406654f1c:/wp-admin/link-parse-opml.php diff --git a/wp-admin/link-parse-opml.php b/wp-admin/link-parse-opml.php index ca3e7eba..f24f420d 100644 --- a/wp-admin/link-parse-opml.php +++ b/wp-admin/link-parse-opml.php @@ -11,7 +11,7 @@ if ( ! defined('ABSPATH') ) global $opml, $map; -// columns we wish to find are: link_url, link_name, link_target, link_description +// columns we wish to find are: link_url, link_name, link_target, link_description // we need to map XML attribute names to our columns $opml_map = array('URL' => 'link_url', 'HTMLURL' => 'link_url', @@ -27,7 +27,7 @@ $map = $opml_map; /** * XML callback function for the start of a new XML tag. * - * @since unknown + * @since 0.71 * @access private * * @uses $updated_timestamp Not used inside function. @@ -68,7 +68,7 @@ function startElement($parser, $tagName, $attrs) { /** * XML callback function that is called at the end of a XML tag. * - * @since unknown + * @since 0.71 * @access private * @package WordPress * @subpackage Dummy @@ -94,4 +94,3 @@ if (!xml_parse($xml_parser, $opml, true)) { // Free up memory used by the XML parser xml_parser_free($xml_parser); -?>