Skip to content

Commit

Permalink
Fix spelling mistake in tooltip for image rotation button. Fixes #114…
Browse files Browse the repository at this point in the history
…88 for 2.9.1 props computerwiz908.

git-svn-id: http://svn.automattic.com/wordpress/branches/2.9@12482 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
westi committed Dec 22, 2009
1 parent eb71e01 commit a1fdb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-admin/includes/image-edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function wp_image_editor($post_id, $msg = false) {

if ( function_exists('imagerotate') ) { ?>

<div onclick="imageEdit.rotate(90, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-rleft" title="<?php esc_attr_e( 'Rotate couter-clockwise' ); ?>"></div>
<div onclick="imageEdit.rotate(90, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-rleft" title="<?php esc_attr_e( 'Rotate counter-clockwise' ); ?>"></div>
<div onclick="imageEdit.rotate(-90, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-rright" title="<?php esc_attr_e( 'Rotate clockwise' ); ?>"></div><?php

} ?>
Expand Down

0 comments on commit a1fdb6f

Please sign in to comment.