--- sites/all/modules/karma/karma.module.orig 2008-01-24 17:10:32.000000000 -0500 +++ sites/all/modules/karma/karma.module 2008-01-24 17:19:25.000000000 -0500 @@ -214,7 +214,9 @@ function karma_update_comment_statistics } function karma_comment(&$comment, $op) { - if ($op == 'view' && arg(1) != 'reply' && user_access('view comment ratings')) { + /** Disable Karma ratings when a user is editing a comment. The Karma module inserts a form within the editing form which breaks the preview and submit buttons in Internet Explorer, in addition to just being bad HTML + if ($op == 'view' && arg(1) != 'reply' && user_access('view comment ratings')) {*/ + if ($op == 'view' && arg(1) != 'reply' && arg(1) != 'edit' && user_access('view comment ratings')) { $rating_form = drupal_get_form('karma_rating_form_comment_'. $comment->cid, 'comment', $comment, $comment->cid); drupal_add_css(drupal_get_path('module', 'karma') .'/karma.css'); drupal_add_js(drupal_get_path('module', 'karma') .'/karma.js');