diff --git a/wp-content/themes/twentyeleven/category.php b/wp-content/themes/twentyeleven/category.php index e9bc2e7052..7e47355859 100644 --- a/wp-content/themes/twentyeleven/category.php +++ b/wp-content/themes/twentyeleven/category.php @@ -30,7 +30,7 @@ get_header(); ?> * * @since Twenty Eleven 1.0 * - * @param string The default category description HTML. + * @param string $html The default category description HTML. */ echo apply_filters( 'category_archive_meta', '
' . $category_description . '
' ); } diff --git a/wp-content/themes/twentyeleven/functions.php b/wp-content/themes/twentyeleven/functions.php index c52da6e1f1..cc7821aa8f 100644 --- a/wp-content/themes/twentyeleven/functions.php +++ b/wp-content/themes/twentyeleven/functions.php @@ -188,7 +188,7 @@ if ( ! function_exists( 'twentyeleven_setup' ) ) : * * @since Twenty Eleven 1.0 * - * @param int The default header image width in pixels. Default 1000. + * @param int $width The default header image width in pixels. Default 1000. */ 'width' => apply_filters( 'twentyeleven_header_image_width', 1000 ), /** @@ -196,7 +196,7 @@ if ( ! function_exists( 'twentyeleven_setup' ) ) : * * @since Twenty Eleven 1.0 * - * @param int The default header image height in pixels. Default 288. + * @param int $height The default header image height in pixels. Default 288. */ 'height' => apply_filters( 'twentyeleven_header_image_height', 288 ), // Support flexible heights. diff --git a/wp-includes/version.php b/wp-includes/version.php index e45d5147ea..92c0aa1ec2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '7.0-alpha-61314'; +$wp_version = '7.0-alpha-61315'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.