From 8544d69d355d36b055e8ea2cbbcfc4deab10d41c Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 12 Oct 2015 16:44:24 +0000 Subject: [PATCH] Docs: Normalize spacing in the `wp_get_attachment_link` hook doc following [35065]. See #34257. See #32246. Built from https://develop.svn.wordpress.org/trunk@35066 git-svn-id: http://core.svn.wordpress.org/trunk@35031 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 14 +++++++------- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 59e4a50370..92ccf45663 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -1437,13 +1437,13 @@ function wp_get_attachment_link( $id = 0, $size = 'thumbnail', $permalink = fals * * @since 2.7.0 * - * @param string $link_html The page link HTML output. - * @param int $id Post ID. - * @param string|array $size Size of the image. Image size or array of width and height values (in that order). - * Default 'thumbnail'. - * @param bool $permalink Whether to add permalink to image. Default false. - * @param bool $icon Whether to include an icon. Default false. - * @param string|bool $text If string, will be link text. Default false. + * @param string $link_html The page link HTML output. + * @param int $id Post ID. + * @param string|array $size Size of the image. Image size or array of width and height values (in that order). + * Default 'thumbnail'. + * @param bool $permalink Whether to add permalink to image. Default false. + * @param bool $icon Whether to include an icon. Default false. + * @param string|bool $text If string, will be link text. Default false. */ return apply_filters( 'wp_get_attachment_link', "$link_text", $id, $size, $permalink, $icon, $text ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 4a2fc1b1e5..a813f69e01 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35065'; +$wp_version = '4.4-alpha-35066'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.