diff --git a/wp-includes/rss.php b/wp-includes/rss.php index 3304ed0c19..d113eee1c2 100644 --- a/wp-includes/rss.php +++ b/wp-includes/rss.php @@ -74,11 +74,10 @@ class MagpieRSS { # pass in parser, and a reference to this object # set up handlers # - xml_set_object( $this->parser, $this ); xml_set_element_handler($this->parser, - 'feed_start_element', 'feed_end_element' ); + array( $this, 'feed_start_element' ), array( $this, 'feed_end_element' ) ); - xml_set_character_data_handler( $this->parser, 'feed_cdata' ); + xml_set_character_data_handler( $this->parser, array( $this, 'feed_cdata' ) ); $status = xml_parse( $this->parser, $source ); diff --git a/wp-includes/version.php b/wp-includes/version.php index a8c957a33f..87e3028830 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-59062'; +$wp_version = '6.7-alpha-59063'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.