editCommentView.inc 509 B

1234567891011
  1. <div id="addComment">
  2. Commenting as: <?=$user->getDisplayName()?>
  3. <form method="POST" action="?a=submiteditcomment&id=<?=$commentData['comment_id']?>" enctype="multipart/form-data">
  4. <textarea name="commentBody"><?=$commentData['content']?></textarea>
  5. <br />
  6. <?php //include "commentAttachmentsView.inc"?>
  7. <label for="attachment1">Upload Attachment:</label><input type="file" name="attachment1" id="attachment1" />
  8. <br />
  9. <input type="submit" name="submit" value="Save changes" />
  10. </form>
  11. </div>