Comments: Guard against potential PHP notices in `get_comment_author` and `get_comment_ID`.
In both `get_comment_author` and `get_comment_ID`, it's possible that these functions are called without a comment context. Specifically, `get_comment_author` can be called without passing the `$comment_ID` parameter, and `get_comment_ID` relies on the `comment` global if there's no `$comment` parameter supplied. This leads to a PHP notice of "Trying to get property of a non-object." This change adds a check to both functions to ensure the `$comment->comment_ID` property is not empty before actually using its value. Follow-up to [52223]. Props dd32. Fixes #54379. Built from https://develop.svn.wordpress.org/trunk@52818 git-svn-id: http://core.svn.wordpress.org/trunk@52407 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d71c435a82
commit
66ed09edeb
|
@ -23,9 +23,10 @@
|
||||||
*/
|
*/
|
||||||
function get_comment_author( $comment_ID = 0 ) {
|
function get_comment_author( $comment_ID = 0 ) {
|
||||||
$comment = get_comment( $comment_ID );
|
$comment = get_comment( $comment_ID );
|
||||||
|
$comment_ID = ! empty( $comment->comment_ID ) ? $comment->comment_ID : $comment_ID;
|
||||||
|
|
||||||
if ( empty( $comment->comment_author ) ) {
|
if ( empty( $comment->comment_author ) ) {
|
||||||
$user = $comment->user_id ? get_userdata( $comment->user_id ) : false;
|
$user = ! empty( $comment->user_id ) ? get_userdata( $comment->user_id ) : false;
|
||||||
if ( $user ) {
|
if ( $user ) {
|
||||||
$author = $user->display_name;
|
$author = $user->display_name;
|
||||||
} else {
|
} else {
|
||||||
|
@ -45,7 +46,7 @@ function get_comment_author( $comment_ID = 0 ) {
|
||||||
* @param string $comment_ID The comment ID as a numeric string.
|
* @param string $comment_ID The comment ID as a numeric string.
|
||||||
* @param WP_Comment $comment The comment object.
|
* @param WP_Comment $comment The comment object.
|
||||||
*/
|
*/
|
||||||
return apply_filters( 'get_comment_author', $author, $comment->comment_ID, $comment );
|
return apply_filters( 'get_comment_author', $author, $comment_ID, $comment );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -664,6 +665,7 @@ function comment_excerpt( $comment_ID = 0 ) {
|
||||||
*/
|
*/
|
||||||
function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
|
function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
|
||||||
$comment = get_comment();
|
$comment = get_comment();
|
||||||
|
$comment_ID = ! empty( $comment->comment_ID ) ? $comment->comment_ID : '0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters the returned comment ID.
|
* Filters the returned comment ID.
|
||||||
|
@ -674,7 +676,7 @@ function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFun
|
||||||
* @param string $comment_ID The current comment ID as a numeric string.
|
* @param string $comment_ID The current comment ID as a numeric string.
|
||||||
* @param WP_Comment $comment The comment object.
|
* @param WP_Comment $comment The comment object.
|
||||||
*/
|
*/
|
||||||
return apply_filters( 'get_comment_ID', $comment->comment_ID, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase
|
return apply_filters( 'get_comment_ID', $comment_ID, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.0-alpha-52817';
|
$wp_version = '6.0-alpha-52818';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue