From 3f38dfa688e10997b1c0eaf625f5c7429c1b8eaa Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 14 Dec 2015 02:45:27 +0000 Subject: [PATCH] Correct a parameter name in the `@param` docs for `get_home_url()`. See #32246 Built from https://develop.svn.wordpress.org/trunk@35915 git-svn-id: http://core.svn.wordpress.org/trunk@35879 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index abd9069f64..8476314447 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -2941,10 +2941,10 @@ function home_url( $path = '', $scheme = null ) { * * @global string $pagenow * - * @param int $blog_id Optional. Blog ID. Default null (current blog). - * @param string $path Optional. Path relative to the home URL. Default empty. - * @param string|null $orig_scheme Optional. Scheme to give the home URL context. Accepts - * 'http', 'https', 'relative', 'rest', or null. Default null. + * @param int $blog_id Optional. Blog ID. Default null (current blog). + * @param string $path Optional. Path relative to the home URL. Default empty. + * @param string|null $scheme Optional. Scheme to give the home URL context. Accepts + * 'http', 'https', 'relative', 'rest', or null. Default null. * @return string Home URL link with optional path appended. */ function get_home_url( $blog_id = null, $path = '', $scheme = null ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 9590cbabfc..882084864c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35914'; +$wp_version = '4.5-alpha-35915'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.