Make WordPress Core

Changeset 26981


Ignore:
Timestamp:
01/18/2014 05:05:38 PM (13 years ago)
Author:
DrewAPicture
Message:

Hook docs spacing and standards fixes for wp-admin/includes/ajax-actions.php.

See #25374.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ajax-actions.php

    r26876 r26981  
    12311231                 * @since 3.0.0
    12321232                 *
    1233                  * @param object $menus_meta_box_object A nav menu meta box object, such as Page, Post, Category, Tag, etc.
     1233                 * @param object $menus_meta_box_object A nav menu meta box object, such as Page,
     1234                 *                                      Post, Category, Tag, etc.
    12341235                 */
    12351236                $item = apply_filters( 'nav_menu_meta_box_object', $menus_meta_box_object );
     
    18311832         * @since 3.3.0
    18321833         *
    1833          * @param int $interval The interval in seconds the post lock duration should last, plus 5 seconds. Default 150.
     1834         * @param int $interval The interval in seconds the post lock duration
     1835         *                      should last, plus 5 seconds. Default 150.
    18341836         */
    18351837        $new_lock = ( time() - apply_filters( 'wp_check_post_lock_window', 150 ) + 5 ) . ':' . $active_lock[1];
     
    19051907
    19061908        /**
    1907          * Filter the arguments passed to WP_Query during an AJAX call for querying attachments.
     1909         * Filter the arguments passed to WP_Query during an AJAX
     1910         * call for querying attachments.
    19081911         *
    19091912         * @since 3.7.0
    19101913         *
    1911          * @param array $query An array of query variables. @see WP_Query::parse_query()
     1914         * @see WP_Query::parse_query()
     1915         *
     1916         * @param array $query An array of query variables.
    19121917         */
    19131918        $query = apply_filters( 'ajax_query_attachments_args', $query );
Note: See TracChangeset for help on using the changeset viewer.