Changeset 3136 for trunk/wp-admin/edit-form-comment.php
- Timestamp:
- 11/17/2005 05:47:29 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-form-comment.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r2789 r3136 5 5 $form_extra = "' />\n<input type='hidden' name='comment_ID' value='" . $comment->comment_ID . "' />\n<input type='hidden' name='comment_post_ID' value='".$comment->comment_post_ID; 6 6 ?> 7 <?php $richedit = ( 'true' != get_user_option('rich_editing') ) ? false : true; ?> 7 8 8 9 <form name="post" action="post.php" method="post" id="post"> … … 38 39 <fieldset style="clear: both;"> 39 40 <legend><?php _e('Comment') ?></legend> 40 <?php if ( 'true' != get_user_option('rich_editing') ) : ?> 41 <?php the_quicktags(); ?> 42 <script type="text/javascript"> 43 <!-- 44 edCanvas = document.getElementById('content'); 45 //--> 46 </script> 47 <?php endif; ?> 41 <?php if ( !$richedit ) the_quicktags(); ?> 42 48 43 <?php 49 44 $rows = get_settings('default_post_edit_rows'); … … 55 50 </fieldset> 56 51 52 <?php if ( !$richedit ) : ?> 53 <script type="text/javascript"> 54 <!-- 55 edCanvas = document.getElementById('content'); 56 //--> 57 </script> 58 <?php endif; ?> 57 59 58 60 <p class="submit"><input type="submit" name="editcomment" id="editcomment" value="<?php echo $submitbutton_text ?>" style="font-weight: bold;" tabindex="6" />
Note: See TracChangeset
for help on using the changeset viewer.