From 42fbb6568e2ce22b8bee0e977ec408f57cf3918c Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Wed, 24 Jun 2015 04:52:25 +0000 Subject: [PATCH] WP Filesystem: Correctly set the @since for WP_Filesystem_Base::getchmod() added in r32923. This is 2.5.0 as that's when the function become available in all subclasses. See #29548 Built from https://develop.svn.wordpress.org/trunk@32924 git-svn-id: http://core.svn.wordpress.org/trunk@32895 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-filesystem-base.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-filesystem-base.php b/wp-admin/includes/class-wp-filesystem-base.php index 3b43227160..ef5de4ee47 100644 --- a/wp-admin/includes/class-wp-filesystem-base.php +++ b/wp-admin/includes/class-wp-filesystem-base.php @@ -354,7 +354,7 @@ class WP_Filesystem_Base { /** * Gets the permissions of the specified file or filepath in their octal format * - * @since 4.0 + * @since 2.5.0 * @param string $file * @return string the last 3 characters of the octal number */ diff --git a/wp-includes/version.php b/wp-includes/version.php index db3cd0c72d..d0b5e76698 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32923'; +$wp_version = '4.3-alpha-32924'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.