From 54d4f34ad26c922985667d802204d4da3f7e66d0 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sat, 28 Jun 2014 04:00:27 +0000 Subject: [PATCH] If the `get_the_excerpt()` is called out of bounds of a global `$post`, return ''. Fixes #22413. git-svn-id: https://develop.svn.wordpress.org/trunk@28880 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index 0f1570a21b..94fda7dec2 100644 --- a/src/wp-includes/post-template.php +++ b/src/wp-includes/post-template.php @@ -27,7 +27,7 @@ function the_ID() { */ function get_the_ID() { $post = get_post(); - return ! empty ( $post ) ? $post->ID : false; + return ! empty( $post ) ? $post->ID : false; } /** @@ -341,6 +341,9 @@ function get_the_excerpt( $deprecated = '' ) { _deprecated_argument( __FUNCTION__, '2.3' ); $post = get_post(); + if ( empty( $post ) ) { + return ''; + } if ( post_password_required() ) { return __( 'There is no excerpt because this is a protected post.' );