Make WordPress Core

Ticket #34171: 34171.patch

File 34171.patch, 702 bytes (added by drebbits.web, 11 years ago)
  • wp-admin/includes/meta-boxes.php

     
    99 *
    1010 * @global string $action
    1111 *
    12  * @param object $post
     12 * @param WP_Post  $post Post object.
     13 * @param array    $args {
     14 *     Post submit meta box arguments.
     15 *
     16 *     @type string   $id       Meta box ID.
     17 *     @type string   $title    Meta box title.
     18 *     @type callable $callback Meta box display callback.
     19 *     @type array    $args     Extra meta box arguments.
     20 * }
    1321 */
    1422function post_submit_meta_box($post, $args = array() ) {
    1523        global $action;