]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/addcomment.tmpl
remove form and pagelinks from htmldump
[SourceForge/phpwiki.git] / themes / default / templates / addcomment.tmpl
1 <?php // -*- php -*-
2   rcs_id('$Id: addcomment.tmpl,v 1.7 2007-09-22 12:37:55 rurban Exp $');
3   $request->setArg('action',false);
4 ?>
5 <div class="wikicomment wikicomment-form">
6 <?php if (!$WikiTheme->DUMP_MODE) { ?>
7 <form action="<?=$request->getPostURL()?>" method="post" class="wikiaction"
8       accept-charset="<?=CHARSET?>">
9   <input type="hidden" name="comment[pagename]" value="<?=$PAGENAME?>" />
10   <?= HiddenInputs($request->getArgs()) ?>
11   <table class="wikicomment-form">
12      <tr><td width="100%"><textarea class="commentedit" rows="3" cols="55"
13                        name="comment[content]" wrap="virtual"></textarea></td>
14          <td class="submit-button"><input type="submit" value="<?=
15 _("Add Comment")
16 ?>"
17                      name="comment[addcomment]" class="wikiaction" /></td>
18      </tr>
19   </table>
20 </form>
21 <?php } ?>
22 </div>