Make WordPress Core

Changeset 31804


Ignore:
Timestamp:
03/17/2015 11:37:58 PM (10 years ago)
Author:
DrewAPicture
Message:

Add a missing DocBlock for the core utility function _get_cron_lock().

Props mordauk, valendesigns.
Fixes #31646.

File:
1 edited

Legend:

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

    r31170 r31804  
    2727}
    2828
    29 // Uncached doing_cron transient fetch
     29/**
     30 * Retrieves the cron lock.
     31 *
     32 * Returns the uncached `doing_cron` transient.
     33 *
     34 * @ignore
     35 * @since 3.3.0
     36 *
     37 * @return string|false Value of the `doing_cron` transient, 0|false otherwise.
     38 */
    3039function _get_cron_lock() {
    3140    global $wpdb;
Note: See TracChangeset for help on using the changeset viewer.