From 8492387809e9cbfdf58641e05bc55ba826ab69d0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 24 Dec 2021 18:04:10 +0000 Subject: [PATCH] External Libraries: Update the SimplePie library to version 1.5.8. This minor update corrects the `SIMPLEPIE_VERSION` constant and updates the changelog after the previous release. Release notes: https://github.com/simplepie/simplepie/releases/tag/1.5.8 For a full list of changes in this update, see the SimplePie GitHub: https://github.com/simplepie/simplepie/compare/1.5.7...1.5.8 Follow-up to [47733], [49176], [52393]. Props faisal03, jrf, audrasjb, SergeyBiryukov. Fixes #54659. git-svn-id: https://develop.svn.wordpress.org/trunk@52413 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-simplepie.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/class-simplepie.php b/src/wp-includes/class-simplepie.php index e5f72292a4..a392e54cd9 100644 --- a/src/wp-includes/class-simplepie.php +++ b/src/wp-includes/class-simplepie.php @@ -68,7 +68,7 @@ spl_autoload_register( 'wp_simplepie_autoload' ); * POSSIBILITY OF SUCH DAMAGE. * * @package SimplePie - * @version 1.5.6 + * @version 1.5.8 * @copyright 2004-2017 Ryan Parman, Sam Sneddon, Ryan McCue * @author Ryan Parman * @author Sam Sneddon @@ -85,7 +85,7 @@ define('SIMPLEPIE_NAME', 'SimplePie'); /** * SimplePie Version */ -define('SIMPLEPIE_VERSION', '1.5.6'); +define('SIMPLEPIE_VERSION', '1.5.8'); /** * SimplePie Build @@ -1820,7 +1820,7 @@ class SimplePie } /** - * Get the error message for the occured error + * Get the error message for the occurred error * * @return string|array Error message, or array of messages for multifeeds */