Changeset 34743 for trunk/src/wp-admin/includes/template-functions.php
- Timestamp:
- 10/01/2015 02:51:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template-functions.php
r34605 r34743 381 381 <div id="com-reply" style="display:none;"><div id="replyrow" style="display:none;"> 382 382 <?php endif; ?> 383 <div id="replyhead" style="display:none;"><h5><?php _e( 'Reply to Comment' ); ?></h5></div> 384 <div id="addhead" style="display:none;"><h5><?php _e('Add new Comment'); ?></h5></div> 383 <fieldset class="comment-reply"> 384 <legend> 385 <span class="hidden" id="editlegend"><?php _e( 'Edit Comment' ); ?></span> 386 <span class="hidden" id="replyhead"><?php _e( 'Reply to Comment' ); ?></span> 387 <span class="hidden" id="addhead"><?php _e( 'Add new Comment' ); ?></span> 388 </legend> 389 390 <div id="replycontainer"> 391 <label for="replycontent" class="screen-reader-text"><?php _e( 'Comment' ); ?></label> 392 <?php 393 $quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' ); 394 wp_editor( '', 'replycontent', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings ) ); 395 ?> 396 </div> 397 385 398 <div id="edithead" style="display:none;"> 386 399 <div class="inside"> … … 398 411 <input type="text" id="author-url" name="newcomment_author_url" class="code" size="103" value="" /> 399 412 </div> 400 <div style="clear:both;"></div>401 </div>402 403 <div id="replycontainer">404 <?php405 $quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' );406 wp_editor( '', 'replycontent', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings ) );407 ?>408 413 </div> 409 414 … … 416 421 <span class="waiting spinner"></span> 417 422 <span class="error" style="display:none;"></span> 418 <br class="clear" />419 423 </p> 420 424 … … 431 435 wp_nonce_field( 'unfiltered-html-comment', '_wp_unfiltered_html_comment', false ); 432 436 ?> 437 </fieldset> 433 438 <?php if ( $table_row ) : ?> 434 439 </td></tr></tbody></table>
Note: See TracChangeset
for help on using the changeset viewer.