Only show tooltip when rich editing is on, fixes #1942
git-svn-id: http://svn.automattic.com/wordpress/trunk@3213 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b5dee82b85
commit
1b15c54153
|
@ -150,7 +150,7 @@ endforeach;
|
|||
?>
|
||||
<?php if ( !$richedit ) the_quicktags(); ?>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
</fieldset>
|
||||
|
||||
<?php if ( !$richedit ) : ?>
|
||||
|
|
Loading…
Reference in New Issue