Make WordPress Core


Ignore:
Timestamp:
07/06/2016 12:39:01 PM (9 years ago)
Author:
SergeyBiryukov
Message:

Docs: Use 3-digit, x.x.x-style semantic versioning for _doing_it_wrong(), _deprecated_function(), _deprecated_argument(), and _deprecated_file() throughout core.

Props metodiew.
Fixes #36495.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/cache.php

    r37460 r37985  
    265265 */
    266266function wp_cache_reset() {
    267     _deprecated_function( __FUNCTION__, '3.5' );
     267    _deprecated_function( __FUNCTION__, '3.5.0' );
    268268
    269269    global $wp_object_cache;
     
    632632     */
    633633    public function reset() {
    634         _deprecated_function( __FUNCTION__, '3.5', 'switch_to_blog()' );
     634        _deprecated_function( __FUNCTION__, '3.5.0', 'switch_to_blog()' );
    635635
    636636        // Clear out non-global caches since the blog ID has changed.
Note: See TracChangeset for help on using the changeset viewer.