From 97e367483a4faea814b3cd79a02aa8c646477fcb Mon Sep 17 00:00:00 2001 From: Rachel Baker Date: Sun, 17 Jan 2016 15:00:27 +0000 Subject: [PATCH] Comments: Correct description of `comment_author` property in WP_Comment class. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `comment_author` property is the comment author’s name, not an ID. Props meitar. Fixes #35464. Built from https://develop.svn.wordpress.org/trunk@36332 git-svn-id: http://core.svn.wordpress.org/trunk@36299 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-comment.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-comment.php b/wp-includes/class-wp-comment.php index 32c5442aae..0e9f88a352 100644 --- a/wp-includes/class-wp-comment.php +++ b/wp-includes/class-wp-comment.php @@ -33,7 +33,7 @@ final class WP_Comment { public $comment_post_ID = 0; /** - * Comment author ID. + * Comment author name. * * @since 4.4.0 * @access public diff --git a/wp-includes/version.php b/wp-includes/version.php index 79b55fbc61..d9b87cb3c4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-1453041974146'; +$wp_version = '4.5-alpha-1453042813410'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.