From ae61a48489ac1e254ca1e6033fde568a3462ecd1 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 15 May 2014 05:08:14 +0000 Subject: [PATCH] Set `@param` back to `$output`, not `$html`, in the inline filter docs. This was a copy/paste mistake. See #22400. Built from https://develop.svn.wordpress.org/trunk@28419 git-svn-id: http://core.svn.wordpress.org/trunk@28246 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index af871ebc6d..b203156c46 100644 --- a/wp-includes/post-template.php +++ b/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 );