Commit 81f18bdbfe for wordpress.org
commit 81f18bdbfedce05397328f47a653b4e069268b73
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date: Thu Nov 27 23:12:27 2025 +0000
Twenty Ten: Add missing variable names to some `@param` tags.
Follow-up to [25627].
Props huzaifaalmesbah.
See #64224.
Built from https://develop.svn.wordpress.org/trunk@61314
git-svn-id: http://core.svn.wordpress.org/trunk@60626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
diff --git a/wp-content/themes/twentyten/author.php b/wp-content/themes/twentyten/author.php
index 469d7b07cf..e29123e3e6 100644
--- a/wp-content/themes/twentyten/author.php
+++ b/wp-content/themes/twentyten/author.php
@@ -45,7 +45,7 @@ if ( get_the_author_meta( 'description' ) ) :
*
* @since Twenty Ten 1.0
*
- * @param int The height and width avatar dimensions in pixels. Default 60.
+ * @param int $size The height and width avatar dimensions in pixels. Default 60.
*/
$author_bio_avatar_size = apply_filters( 'twentyten_author_bio_avatar_size', 60 );
echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
diff --git a/wp-content/themes/twentyten/loop-attachment.php b/wp-content/themes/twentyten/loop-attachment.php
index 5c348d6cc7..3d518745c6 100644
--- a/wp-content/themes/twentyten/loop-attachment.php
+++ b/wp-content/themes/twentyten/loop-attachment.php
@@ -127,7 +127,7 @@ if ( have_posts() ) {
*
* @since Twenty Ten 1.0
*
- * @param int The default attachment width in pixels. Default 900.
+ * @param int $width The default attachment width in pixels. Default 900.
*/
$attachment_width = apply_filters( 'twentyten_attachment_size', 900 );
/**
@@ -135,7 +135,7 @@ if ( have_posts() ) {
*
* @since Twenty Ten 1.0
*
- * @param int The default attachment height in pixels. Default 900.
+ * @param int $height The default attachment height in pixels. Default 900.
*/
$attachment_height = apply_filters( 'twentyten_attachment_height', 900 );
// Filterable image width with, essentially, no limit for image height.
diff --git a/wp-includes/version.php b/wp-includes/version.php
index d93619165c..e45d5147ea 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '7.0-alpha-61313';
+$wp_version = '7.0-alpha-61314';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.