Changeset 2749
- Timestamp:
- 08/04/05 09:26:32 (3 years ago)
- Files:
-
- trunk/wp-admin/edit-form-comment.php (modified) (2 diffs)
- trunk/wp-admin/edit-page-form.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-form-comment.php
r2714 r2749 39 39 <fieldset style="clear: both;"> 40 40 <legend><?php _e('Comment') ?></legend> 41 <?php if ( !get_option('rich_editing') ) : ?> 41 42 <?php the_quicktags(); ?> 43 <script type="text/javascript"> 44 <!-- 45 edCanvas = document.getElementById('content'); 46 //--> 47 </script> 48 <?php endif; ?> 42 49 <?php 43 50 $rows = get_settings('default_post_edit_rows'); … … 46 53 } 47 54 ?> 48 <div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content" style="width: 99%"><?php echo $comment->comment_content ?></textarea></div>55 <div><textarea title="true" rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content" style="width: 99%"><?php echo $comment->comment_content ?></textarea></div> 49 56 </fieldset> 50 57 51 <script type="text/javascript">52 <!--53 edCanvas = document.getElementById('content');54 //-->55 </script>56 58 57 59 <p class="submit"><input type="submit" name="editcomment" id="editcomment" value="<?php echo $submitbutton_text ?>" style="font-weight: bold;" tabindex="6" /> trunk/wp-admin/edit-page-form.php
r2730 r2749 119 119 <fieldset id="postdiv"> 120 120 <legend><?php _e('Page Content') ?></legend> 121 <?php if ( !get_option('rich_editing') ) : ?> 121 122 <?php the_quicktags(); ?> 123 <script type="text/javascript"> 124 <!-- 125 edCanvas = document.getElementById('content'); 126 //--> 127 </script> 128 <?php endif; ?> 122 129 <?php 123 130 $rows = get_settings('default_post_edit_rows'); … … 126 133 } 127 134 ?> 128 <div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div>135 <div><textarea title="true" rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div> 129 136 </fieldset> 130 137 131 138 132 <script type="text/javascript"> 133 <!-- 134 edCanvas = document.getElementById('content'); 135 //--> 136 </script> 139 137 140 138 141 <p class="submit">
