From f84c653fad232438c4bd78fce3b1feab75224a98 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 24 Sep 2015 19:34:24 +0000 Subject: [PATCH] Docs: Clarify the summary and optional `$query` parameter description for `remove_query_arg()`. Props johnbillion. Fixes #33912. Built from https://develop.svn.wordpress.org/trunk@34512 git-svn-id: http://core.svn.wordpress.org/trunk@34476 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index f07cb23269..6165ca9ff9 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -768,12 +768,12 @@ function add_query_arg() { } /** - * Removes an item or list from the query string. + * Removes an item or items from a query string. * * @since 1.5.0 * * @param string|array $key Query key or keys to remove. - * @param bool|string $query Optional. When false uses the $_SERVER value. Default false. + * @param bool|string $query Optional. When false uses the current URL. Default false. * @return string New URL query string. */ function remove_query_arg( $key, $query = false ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 87201c6872..2114561188 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34511'; +$wp_version = '4.4-alpha-34512'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.