@since s/3.2/3.2.0/

git-svn-id: https://develop.svn.wordpress.org/trunk@18268 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-06-11 04:40:18 +00:00
parent 96acb1089d
commit a657a1986c
8 changed files with 15 additions and 15 deletions

View File

@ -87,7 +87,7 @@ class WP_Filesystem_Base {
/** /**
* Returns the path on the remote filesystem of WP_LANG_DIR * Returns the path on the remote filesystem of WP_LANG_DIR
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* *
* @return string The location of the remote path. * @return string The location of the remote path.

View File

@ -1204,7 +1204,7 @@ function dashboard_browser_nag_class( $classes ) {
/** /**
* Check if the user needs a browser update * 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. * @return array|bool False on failure, array of browser data on success.
*/ */

View File

@ -267,7 +267,7 @@ $_old_files = array(
* Filename (relative to wp-content) => Introduced version * Filename (relative to wp-content) => Introduced version
* Directories should be noted by suffixing it with a trailing slash (/) * Directories should be noted by suffixing it with a trailing slash (/)
* *
* @since 3.2 * @since 3.2.0
* @global array $_new_bundled_files * @global array $_new_bundled_files
* @var array * @var array
* @name $_new_bundled_files * @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 * This is a temporary function for the 3.1 -> 3.2 upgrade only and will be removed in 3.3
* *
* @ignore * @ignore
* @since 3.2 * @since 3.2.0
* @see copy_dir() * @see copy_dir()
* *
* @param string $from source directory * @param string $from source directory

View File

@ -373,7 +373,7 @@ function wp_list_authors($args = '') {
* *
* Checks to see if more than one author has published posts. * 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 * @return bool Whether or not we have more than one author
*/ */
function is_multi_author() { function is_multi_author() {

View File

@ -82,7 +82,7 @@ function get_the_category( $id = false ) {
_make_cat_compat( $categories[$key] ); _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 ); return apply_filters( 'get_the_categories', $categories );
} }

View File

@ -376,7 +376,7 @@ function get_meta_sql( $meta_query = false, $type, $primary_table, $primary_id_c
/** /**
* Container class for a multiple metadata query * Container class for a multiple metadata query
* *
* @since 3.2 * @since 3.2.0
*/ */
class WP_Meta_Query { class WP_Meta_Query {
/** /**
@ -390,7 +390,7 @@ class WP_Meta_Query {
* Possible values: 'NUMERIC', 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED'. * Possible values: 'NUMERIC', 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED'.
* Default: 'CHAR' * Default: 'CHAR'
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* @var array * @var array
*/ */
@ -399,7 +399,7 @@ class WP_Meta_Query {
/** /**
* The relation between the queries. Can be one of 'AND' or 'OR'. * The relation between the queries. Can be one of 'AND' or 'OR'.
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* @var string * @var string
*/ */
@ -433,7 +433,7 @@ class WP_Meta_Query {
/** /**
* Constructs a meta query based on 'meta_*' query vars * Constructs a meta query based on 'meta_*' query vars
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* *
* @param array $qv The query variables * @param array $qv The query variables
@ -461,7 +461,7 @@ class WP_Meta_Query {
/** /**
* Generates SQL clauses to be appended to a main query. * Generates SQL clauses to be appended to a main query.
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* *
* @param string $type Type of meta * @param string $type Type of meta

View File

@ -851,7 +851,7 @@ class WP_Query {
/** /**
* Metadata query container * Metadata query container
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* @var object WP_Meta_Query * @var object WP_Meta_Query
*/ */
@ -1260,7 +1260,7 @@ class WP_Query {
/** /**
* Set if post thumbnails are cached * Set if post thumbnails are cached
* *
* @since 3.2 * @since 3.2.0
* @access public * @access public
* @var bool * @var bool
*/ */

View File

@ -1446,7 +1446,7 @@ function get_header_image() {
/** /**
* Get random header image from registered images in theme. * Get random header image from registered images in theme.
* *
* @since 3.2 * @since 3.2.0
* *
* @return string Path to header image * @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. * 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. * 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 * @uses HEADER_IMAGE
* *
* @param string $type The random pool to use. any|default|uploaded * @param string $type The random pool to use. any|default|uploaded