Make WordPress Core

Changeset 32341


Ignore:
Timestamp:
05/04/2015 01:12:12 AM (10 years ago)
Author:
DrewAPicture
Message:

Add a missing DocBlock for wp_caption_input_textarea().

See #32246.

File:
1 edited

Legend:

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

    r32018 r32341  
    10511051}
    10521052
     1053/**
     1054 * Output a textarea element for inputting an attachment caption.
     1055 *
     1056 * @since 3.4.0
     1057 *
     1058 * @param WP_Post $edit_post Attachment WP_Post object.
     1059 * @return string HTML markup for the textarea element.
     1060 */
    10531061function wp_caption_input_textarea($edit_post) {
    10541062    // Post data is already escaped.
Note: See TracChangeset for help on using the changeset viewer.