]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/addcomment.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / default / templates / addcomment.tmpl
1 <?php // -*- php -*-
2 // rcs_id('$Id$');
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]"></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>