Changeset 3275

Show
Ignore:
Timestamp:
12/07/05 00:30:39 (3 years ago)
Author:
ryan
Message:

Enable rich editing for comment form.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/edit-form-comment.php

    r3136 r3275  
    4747 } 
    4848?> 
    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> 
    5050</fieldset> 
    5151