Changeset 7496 for trunk/wp-admin/includes/media.php
- Timestamp:
- 03/24/2008 02:57:19 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r7491 r7496 461 461 if ( substr($post->post_mime_type, 0, 5) == 'image' ) { 462 462 $form_fields['post_title']['required'] = true; 463 $form_fields['post_excerpt']['label'] = __(' Description');463 $form_fields['post_excerpt']['label'] = __('Caption'); 464 464 $form_fields['post_excerpt']['helps'][] = __('Alternate text, e.g. "The Mona Lisa"'); 465 465 466 $form_fields['post_content']['label'] = __(' LongDescription');466 $form_fields['post_content']['label'] = __('Description'); 467 467 468 468 $thumb = wp_get_attachment_thumb_url($post->ID); … … 555 555 ), 556 556 'post_excerpt' => array( 557 'label' => __(' Description'),557 'label' => __('Caption'), 558 558 'value' => $edit_post->post_excerpt, 559 559 ), 560 560 'post_content' => array( 561 'label' => __(' Long description'),561 'label' => __('Description'), 562 562 'value' => $edit_post->post_content, 563 563 'input' => 'textarea',
Note: See TracChangeset
for help on using the changeset viewer.