From a657a1986c292bc375d686e52d292c9f26648726 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sat, 11 Jun 2011 04:40:18 +0000 Subject: [PATCH] @since s/3.2/3.2.0/ git-svn-id: https://develop.svn.wordpress.org/trunk@18268 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-filesystem-base.php | 2 +- wp-admin/includes/dashboard.php | 2 +- wp-admin/includes/update-core.php | 4 ++-- wp-includes/author-template.php | 2 +- wp-includes/category-template.php | 2 +- wp-includes/meta.php | 10 +++++----- wp-includes/query.php | 4 ++-- wp-includes/theme.php | 4 ++-- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/wp-admin/includes/class-wp-filesystem-base.php b/wp-admin/includes/class-wp-filesystem-base.php index 546cc7f9c0..fd3fdc33b5 100644 --- a/wp-admin/includes/class-wp-filesystem-base.php +++ b/wp-admin/includes/class-wp-filesystem-base.php @@ -87,7 +87,7 @@ class WP_Filesystem_Base { /** * Returns the path on the remote filesystem of WP_LANG_DIR * - * @since 3.2 + * @since 3.2.0 * @access public * * @return string The location of the remote path. diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 169923ff89..a7a2935069 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -1204,7 +1204,7 @@ function dashboard_browser_nag_class( $classes ) { /** * Check if the user needs a browser update * - * @since 3.2 + * @since 3.2.0 * * @return array|bool False on failure, array of browser data on success. */ diff --git a/wp-admin/includes/update-core.php b/wp-admin/includes/update-core.php index d18f74b562..169182abd0 100644 --- a/wp-admin/includes/update-core.php +++ b/wp-admin/includes/update-core.php @@ -267,7 +267,7 @@ $_old_files = array( * Filename (relative to wp-content) => Introduced version * Directories should be noted by suffixing it with a trailing slash (/) * - * @since 3.2 + * @since 3.2.0 * @global array $_new_bundled_files * @var array * @name $_new_bundled_files @@ -471,7 +471,7 @@ function update_core($from, $to) { * This is a temporary function for the 3.1 -> 3.2 upgrade only and will be removed in 3.3 * * @ignore - * @since 3.2 + * @since 3.2.0 * @see copy_dir() * * @param string $from source directory diff --git a/wp-includes/author-template.php b/wp-includes/author-template.php index addecc10ea..f082fb24c4 100644 --- a/wp-includes/author-template.php +++ b/wp-includes/author-template.php @@ -373,7 +373,7 @@ function wp_list_authors($args = '') { * * Checks to see if more than one author has published posts. * - * @since 3.2 + * @since 3.2.0 * @return bool Whether or not we have more than one author */ function is_multi_author() { diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 2c79803c23..6514a631b1 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -82,7 +82,7 @@ function get_the_category( $id = false ) { _make_cat_compat( $categories[$key] ); } - // Filter name is plural because we return alot of categories not just one + // Filter name is plural because we return alot of categories (possibly more than #13237) not just one return apply_filters( 'get_the_categories', $categories ); } diff --git a/wp-includes/meta.php b/wp-includes/meta.php index aabd92e9f3..b24ae080f7 100644 --- a/wp-includes/meta.php +++ b/wp-includes/meta.php @@ -376,7 +376,7 @@ function get_meta_sql( $meta_query = false, $type, $primary_table, $primary_id_c /** * Container class for a multiple metadata query * - * @since 3.2 + * @since 3.2.0 */ class WP_Meta_Query { /** @@ -390,7 +390,7 @@ class WP_Meta_Query { * Possible values: 'NUMERIC', 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED'. * Default: 'CHAR' * - * @since 3.2 + * @since 3.2.0 * @access public * @var array */ @@ -399,7 +399,7 @@ class WP_Meta_Query { /** * The relation between the queries. Can be one of 'AND' or 'OR'. * - * @since 3.2 + * @since 3.2.0 * @access public * @var string */ @@ -433,7 +433,7 @@ class WP_Meta_Query { /** * Constructs a meta query based on 'meta_*' query vars * - * @since 3.2 + * @since 3.2.0 * @access public * * @param array $qv The query variables @@ -461,7 +461,7 @@ class WP_Meta_Query { /** * Generates SQL clauses to be appended to a main query. * - * @since 3.2 + * @since 3.2.0 * @access public * * @param string $type Type of meta diff --git a/wp-includes/query.php b/wp-includes/query.php index 292834da11..b7f433ca62 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -851,7 +851,7 @@ class WP_Query { /** * Metadata query container * - * @since 3.2 + * @since 3.2.0 * @access public * @var object WP_Meta_Query */ @@ -1260,7 +1260,7 @@ class WP_Query { /** * Set if post thumbnails are cached * - * @since 3.2 + * @since 3.2.0 * @access public * @var bool */ diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 39ceafe196..a5e99a981c 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1446,7 +1446,7 @@ function get_header_image() { /** * Get random header image from registered images in theme. * - * @since 3.2 + * @since 3.2.0 * * @return string Path to header image */ @@ -1476,7 +1476,7 @@ function get_random_header_image() { * Always true if user expressly chooses the option in Appearance > Header. * Also true if theme has multiple header images registered and no specific header image is chosen. * - * @since 3.2 + * @since 3.2.0 * @uses HEADER_IMAGE * * @param string $type The random pool to use. any|default|uploaded