From 8c6d4d5d8315b5175925802a85410206016f5ae8 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 14 Dec 2015 02:44:03 +0000 Subject: [PATCH] Correct a parameter name in the `@param` docs for `get_home_url()`. See #32246 git-svn-id: https://develop.svn.wordpress.org/trunk@35915 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/link-template.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/link-template.php b/src/wp-includes/link-template.php index abd9069f64..8476314447 100644 --- a/src/wp-includes/link-template.php +++ b/src/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 ) {