Changeset 24228
- Timestamp:
- 05/09/2013 11:53:24 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/post-formats.php
r24226 r24228 54 54 _e( 'Image URL' ); 55 55 ?></label> 56 <textarea id="wp_format_image" type="text" name="_format_image" class="widefat"><?php e sc_html_e( $format_meta['image'] ); ?></textarea>56 <textarea id="wp_format_image" type="text" name="_format_image" class="widefat"><?php echo esc_html( $format_meta['image'] ); ?></textarea> 57 57 </div> 58 58 <p class="use-url-or-html hide-if-no-js"><span><?php printf( __( '(or %suse an image URL or HTML%s)' ), '<a href="#">', '</a>' ); ?></span> … … 103 103 _e( 'Video URL' ); 104 104 ?></label> 105 <textarea id="wp_format_video" type="text" name="_format_video_embed" class="widefat"><?php e sc_html_e( $format_meta['video_embed'] ); ?></textarea>105 <textarea id="wp_format_video" type="text" name="_format_video_embed" class="widefat"><?php echo esc_html( $format_meta['video_embed'] ); ?></textarea> 106 106 <div data-format="video" class="wp-format-media-holder hide-if-no-js"> 107 107 <a href="#" class="wp-format-media-select" … … 141 141 _e( 'Audio URL' ); 142 142 ?></label> 143 <textarea id="wp_format_audio" name="_format_audio_embed" class="widefat"><?php e sc_html_e( $format_meta['audio_embed'] ); ?></textarea>143 <textarea id="wp_format_audio" name="_format_audio_embed" class="widefat"><?php echo esc_html( $format_meta['audio_embed'] ); ?></textarea> 144 144 <div data-format="audio" class="wp-format-media-holder hide-if-no-js"> 145 145 <a href="#" class="wp-format-media-select" data-choose="<?php esc_attr_e( 'Choose Audio' ); ?>" data-update="<?php esc_attr_e( 'Select Audio' ); ?>">
Note: See TracChangeset
for help on using the changeset viewer.