Changeset 30681 for trunk/src/wp-includes/cron.php
- Timestamp:
- 12/01/2014 01:33:34 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cron.php
r30537 r30681 67 67 * @param string $hook Action hook to execute when cron is run. 68 68 * @param array $args Optional. Arguments to pass to the hook's callback function. 69 * @return bool|null False on failure, null when complete with scheduling event.69 * @return false|null False on failure, null when complete with scheduling event. 70 70 */ 71 71 function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array()) { … … 100 100 * @param string $hook Action hook to execute when cron is run. 101 101 * @param array $args Optional. Arguments to pass to the hook's callback function. 102 * @return bool|null False on failure. Null when event is rescheduled.102 * @return false|null False on failure. Null when event is rescheduled. 103 103 */ 104 104 function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array() ) {
Note: See TracChangeset
for help on using the changeset viewer.