wp_nonce_field('wp-ajax-edit-comments_save-comment');
?>
<div><input type="hidden" id="commentID" value="<?php 
echo $commentID;
?>
" />
  <input type="hidden" id="postID" value="<?php 
echo $postID;
?>
" />
  <input type="hidden" id="action" value="<?php 
echo $commentAction;
?>
" /></div>
<?php 
if (AECCore::can_edit_options($commentID, $postID)) {
    ?>
  	<table class="form inputs">
    <tbody>
    	<?php 
    if (AECCore::can_edit_name($commentID, $postID)) {
        ?>
      <tr>
        <td><label for="name"><?php 
        _e('Name', "ajaxEdit");
        ?>
</label></td>
        <td><span> : </span><input type="text" size="35" name="name" id="name" /></td>
      </tr>
      <?php 
    }