Changeset 3213

Show
Ignore:
Timestamp:
11/25/05 22:44:48 (3 years ago)
Author:
matt
Message:

Only show tooltip when rich editing is on, fixes #1942

Files:

Legend:

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

    r3150 r3213  
    151151<?php if ( !$richedit ) the_quicktags(); ?> 
    152152 
    153 <div><textarea title="true" rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="2" id="content"><?php echo $richedit ? wp_richedit_pre($post->post_content) : $post->post_content; ?></textarea></div> 
     153<div><textarea <?php if ( $richedit ) echo 'title="true"'; ?> rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="2" id="content"><?php echo $richedit ? wp_richedit_pre($post->post_content) : $post->post_content; ?></textarea></div> 
    154154</fieldset> 
    155155