From f116de620336aacdeb217460c8bfc77e14452e09 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 15 May 2014 05:07:18 +0000 Subject: [PATCH] Set `@param` back to `$output`, not `$html`, in the inline filter docs. This was a copy/paste mistake. See #22400. git-svn-id: https://develop.svn.wordpress.org/trunk@28419 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index af871ebc6d..b203156c46 100644 --- a/src/wp-includes/post-template.php +++ b/src/wp-includes/post-template.php @@ -800,7 +800,7 @@ function wp_link_pages( $args = '' ) { * * @since 3.6.0 * - * @param string $html HTML output of paginated posts' page links. + * @param string $output HTML output of paginated posts' page links. * @param array $args An array of arguments. */ $html = apply_filters( 'wp_link_pages', $output, $args ); @@ -953,7 +953,7 @@ function wp_dropdown_pages( $args = '' ) { * * @since 2.1.0 * - * @param string $html HTML output for drop down list of pages. + * @param string $output HTML output for drop down list of pages. */ $html = apply_filters( 'wp_dropdown_pages', $output ); @@ -1060,7 +1060,7 @@ function wp_list_pages( $args = '' ) { * * @see wp_list_pages() * - * @param string $html HTML output of the pages list. + * @param string $output HTML output of the pages list. * @param array $r An array of page-listing arguments. */ $html = apply_filters( 'wp_list_pages', $output, $r );