Changeset 3275
- Timestamp:
- 12/07/05 00:30:39 (3 years ago)
- Files:
-
- trunk/wp-admin/edit-form-comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-form-comment.php
r3136 r3275 47 47 } 48 48 ?> 49 <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 <div><textarea <?php if ( $richedit ) echo 'title="true"'; ?> rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content" style="width: 99%"><?php echo $richedit ? wp_richedit_pre($comment->comment_content) : $comment->comment_content; ?></textarea></div> 50 50 </fieldset> 51 51
