Ticket #16515: dashboard.diff
File dashboard.diff, 1.5 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/dashboard.php
506 506 ?> 507 507 508 508 <form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press"> 509 <h4 id="quick-post-title"><label for="title"><?php _e ('Title') ?></label></h4>509 <h4 id="quick-post-title"><label for="title"><?php _ex('Title', 'QuickPress') ?></label></h4> 510 510 <div class="input-text-wrap"> 511 511 <input type="text" name="post_title" id="title" tabindex="1" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" /> 512 512 </div> … … 517 517 </div> 518 518 <?php endif; ?> 519 519 520 <h4 id="content-label"><label for="content"><?php _e ('Content') ?></label></h4>520 <h4 id="content-label"><label for="content"><?php _ex('Content', 'QuickPress') ?></label></h4> 521 521 <div class="textarea-wrap"> 522 522 <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" tabindex="2"><?php echo esc_textarea( $post->post_content ); ?></textarea> 523 523 </div> 524 524 525 525 <script type="text/javascript">edCanvas = document.getElementById('content');edInsertContent = null;</script> 526 526 527 <h4><label for="tags-input"><?php _e ('Tags') ?></label></h4>527 <h4><label for="tags-input"><?php _ex('Tags', 'QuickPress') ?></label></h4> 528 528 <div class="input-text-wrap"> 529 529 <input type="text" name="tags_input" id="tags-input" tabindex="3" value="<?php echo get_tags_to_edit( $post->ID ); ?>" /> 530 530 </div>