Commit 1c7a6a9468 for wordpress.org

commit 1c7a6a9468c22bf1be1780aebb89b73a6f6bfac8
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Sun Dec 14 23:57:37 2025 +0000

    Docs: Update `wp_get_media_creation_timestamp()` DocBlock for consistency.

    Follow-up to [19687], [41746].

    See #64224.
    Built from https://develop.svn.wordpress.org/trunk@61380


    git-svn-id: http://core.svn.wordpress.org/trunk@60692 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php
index 8436bde73b..210539681a 100644
--- a/wp-admin/includes/media.php
+++ b/wp-admin/includes/media.php
@@ -3769,8 +3769,8 @@ function wp_read_audio_metadata( $file ) {
  * @link https://github.com/JamesHeinrich/getID3/blob/master/structure.txt
  *
  * @param array $metadata The metadata returned by getID3::analyze().
- * @return int|false A UNIX timestamp for the media's creation date if available
- *                   or a boolean FALSE if a timestamp could not be determined.
+ * @return int|false A Unix timestamp for the media's creation date if available
+ *                   or a boolean false if the timestamp could not be determined.
  */
 function wp_get_media_creation_timestamp( $metadata ) {
 	$creation_date = false;
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 6cf1a5bedd..2a5a0023ad 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61379';
+$wp_version = '7.0-alpha-61380';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.