Make WordPress Core


Ignore:
Timestamp:
05/31/2015 03:17:50 AM (9 years ago)
Author:
wonderboymusic
Message:

Add doc blocks to functions that are missing them.
If the function has no need for @param or @return, do an archeaological dig to find @since.

See #32444.

File:
1 edited

Legend:

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

    r32653 r32672  
    15751575}
    15761576
     1577/**
     1578 * @since 3.5.0
     1579 *
     1580 * @param int   $attachment_id
     1581 * @param array $args
     1582 * @return array
     1583 */
    15771584function get_compat_media_markup( $attachment_id, $args = null ) {
    15781585    $post = get_post( $attachment_id );
Note: See TracChangeset for help on using the changeset viewer.