From 5b34f6faffe9dc1bee7968520491578494304403 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 13 Jul 2015 17:59:24 +0000 Subject: [PATCH] Add a true return description to the `test()` method added to wpEmoji in 4.3. See [32335]. See #32891. Built from https://develop.svn.wordpress.org/trunk@33203 git-svn-id: http://core.svn.wordpress.org/trunk@33175 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/js/wp-emoji.js | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-includes/js/wp-emoji.js b/wp-includes/js/wp-emoji.js index 186dd6b612..4acf43421d 100644 --- a/wp-includes/js/wp-emoji.js +++ b/wp-includes/js/wp-emoji.js @@ -91,12 +91,13 @@ } /** - * Test if a text string contains emoji characters + * Test if a text string contains emoji characters. * * @since 4.3.0 * * @param {String} text The string to test - * @returns Boolean + * + * @return {Boolean} Whether the string contains emoji characters. */ function test( text ) { // Single char. U+20E3 to detect keycaps. U+00A9 "copyright sign" and U+00AE "registered sign" not included. diff --git a/wp-includes/version.php b/wp-includes/version.php index 1d14cca126..6207ffd332 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta2-33202'; +$wp_version = '4.3-beta2-33203'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.