Index: trunk/xpressme_integration_kit/wp-content/themes/xpress_default/comments.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/themes/xpress_default/comments.php	(revision 651)
+++ trunk/xpressme_integration_kit/wp-content/themes/xpress_default/comments.php	(revision 653)
@@ -111,5 +111,11 @@
 						<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
 					<?php endif; ?>
-					<?php do_action('comment_form', $post->ID); ?>
+					<?php
+						ob_start();
+							do_action('comment_form', $post->ID);
+							$output = ob_get_contents();
+						ob_end_clean();
+						echo str_replace(' id="_wp', ' id="wp', $output);
+					?>
 				</div>
 			</form>
