From d5a9811f028773a908954fb6a5c4fb0dfb76405c Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 16 Dec 2015 23:23:26 +0000 Subject: [PATCH] Docs: Add a missing summary, parameter, and return notations to the DocBlock for `strip_shortcode_tag()`. Introduced in [18952]. See #32246. Built from https://develop.svn.wordpress.org/trunk@35982 git-svn-id: http://core.svn.wordpress.org/trunk@35947 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/shortcodes.php | 7 +++++-- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/wp-includes/shortcodes.php b/wp-includes/shortcodes.php index 22f33c32ef..3967270922 100644 --- a/wp-includes/shortcodes.php +++ b/wp-includes/shortcodes.php @@ -597,9 +597,12 @@ function strip_shortcodes( $content ) { } /** + * Strips a shortcode tag based on RegEx matches against post content. * - * @param array $m - * @return string|false + * @since 3.3.0 + * + * @param array $m RegEx matches against post content. + * @return string|false The content stripped of the tag, otherwise false. */ function strip_shortcode_tag( $m ) { // allow [[foo]] syntax for escaping a tag diff --git a/wp-includes/version.php b/wp-includes/version.php index b20f027f6a..36ef78c747 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35981'; +$wp_version = '4.5-alpha-35982'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.