Make WordPress Core

Ticket #22759: 22759.throw-in-the-towel.diff

File 22759.throw-in-the-towel.diff, 4.0 KB (added by nacin, 12 years ago)
  • wp-includes/js/media-editor.js

     
    554554                                props = wp.media.string.props( props, attachment );
    555555
    556556                                options = {
    557                                         id: attachment.id
     557                                        id:           attachment.id,
     558                                        post_content: attachment.description
    558559                                };
    559560
    560561                                if ( props.linkUrl )
  • wp-includes/js/media-views.js

     
    28292829                                        width:         '',
    28302830                                        height:        '',
    28312831                                        compat:        false,
    2832                                         alt:           ''
     2832                                        alt:           '',
     2833                                        description:   '',
    28332834                                });
    28342835
    28352836                        options.buttons  = this.buttons;
  • wp-includes/media.php

     
    17491749                                <# } #>/>
    17501750                        </label>
    17511751                <# } #>
     1752                        <label class="setting" data-setting="description">
     1753                                <span><?php _e('Description'); ?></span>
     1754                                <textarea {{ maybeReadOnly }}>{{ data.description }}</textarea>
     1755                        </label>
    17521756        </script>
    17531757
    17541758        <script type="text/html" id="tmpl-media-selection">
  • wp-admin/includes/ajax-actions.php

     
    18841884        if ( isset( $changes['caption'] ) )
    18851885                $post['post_excerpt'] = $changes['caption'];
    18861886
     1887        if ( isset( $changes['description'] ) )
     1888                $post['post_content'] = $changes['description'];
     1889
    18871890        if ( isset( $changes['alt'] ) ) {
    18881891                $alt = get_post_meta( $id, '_wp_attachment_image_alt', true );
    18891892                $new_alt = stripslashes( $changes['alt'] );
  • wp-admin/includes/meta-boxes.php

     
    313313        );
    314314?>
    315315<p>
    316         <label class="screen-reader-text" for="content"><strong><?php _e( 'Attachment Page Content' ); ?></strong></label>
     316        <label class="screen-reader-text" for="content"><strong><?php _e( 'Description' ); ?></strong></label>
    317317        <?php wp_editor( $post->post_content, 'attachment_content', $editor_args ); ?>
    318318</p>
    319319<?php
  • wp-admin/includes/media.php

     
    13291329        $form_fields = apply_filters( 'attachment_fields_to_edit', $form_fields, $post );
    13301330
    13311331        unset( $form_fields['image-size'], $form_fields['align'], $form_fields['image_alt'],
    1332                 $form_fields['post_title'], $form_fields['post_excerpt'],
     1332                $form_fields['post_title'], $form_fields['post_excerpt'], $form_fields['post_content'],
    13331333                $form_fields['url'], $form_fields['menu_order'], $form_fields['image_url'] );
    13341334
    1335         if ( ! $args['description'] )
    1336                 unset( $form_fields['post_content'] );
    1337 
    13381335        $media_meta = apply_filters( 'media_meta', '', $post );
    13391336
    13401337        $defaults = array(
  • wp-admin/edit-form-advanced.php

     
    107107        wp_enqueue_script( 'image-edit' );
    108108        wp_enqueue_style( 'imgareaselect' );
    109109        add_meta_box( 'submitdiv', __('Save'), 'attachment_submit_meta_box', null, 'side', 'core' );
    110         add_meta_box( 'attachmentdata', __('Attachment Page Content'), 'attachment_content_meta_box', null, 'normal', 'core' );
     110        add_meta_box( 'attachmentdata', __('Description'), 'attachment_content_meta_box', null, 'normal', 'core' );
    111111        add_action( 'edit_form_after_title', 'edit_form_image_editor' );
    112112} else {
    113113        add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', null, 'side', 'core' );