From 01bb8478fff99814ebfb47bd5047fe9dd7c14d8b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 19 Feb 2015 14:56:28 +0000 Subject: [PATCH] Fix a typo in duplicate hook comment. see [31107], #21195. Built from https://develop.svn.wordpress.org/trunk@31479 git-svn-id: http://core.svn.wordpress.org/trunk@31460 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index ebb7001863..8b97cefc70 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -2162,7 +2162,7 @@ function get_avatar( $id_or_email, $size = 96, $default = '', $alt = '', $args = */ $avatar = apply_filters( 'pre_get_avatar', null, $id_or_email, $args ); if ( ! is_null( $avatar ) ) { - /** This filter is documented in src/wp-include/pluggable.php */ + /** This filter is documented in src/wp-includes/pluggable.php */ return apply_filters( 'get_avatar', $avatar, $id_or_email, $args['size'], $args['default'], $args['alt'], $args ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 627bc490e2..f7065427ac 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31473'; +$wp_version = '4.2-alpha-31479'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.