Make WordPress Core


Ignore:
Timestamp:
12/30/2009 04:23:39 PM (15 years ago)
Author:
westi
Message:

Updates and improvements to _depreceated_argument. See #11386 props nacin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/cron.php

    r12537 r12584  
    137137    // Previously this function took the arguments as discrete vars rather than an array like the rest of the API
    138138    if ( !is_array($args) ) {
    139         _deprecated_argument(__FUNCTION__, 'args', '3.0.0', __('This argument has changed to an array so as to match with the behaviour of all the other cron functions.') );
     139        _deprecated_argument( __FUNCTION__, '3.0.0', __('This argument has changed to an array to match the behavior of the other cron functions.') );
    140140        $args = array_slice( func_get_args(), 1 );
    141141    }
Note: See TracChangeset for help on using the changeset viewer.