mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 15:08:32 +01:00
d3c8056258
Tidied up layout and other minor changes.
21 lines
625 B
HTML
21 lines
625 B
HTML
<form name="prune" method="get" action="post.php" enctype="multipart/form-data">
|
|
<table border="0" cellpadding="5">
|
|
<tr valign="top">
|
|
<td align="right"><b><?php print_string("discussionname", "forum"); ?>:</b></td>
|
|
<td>
|
|
<input type="text" name="name" size="60" value="<?php p($post->subject) ?>" />
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td align="center" colspan="2">
|
|
<input type="hidden" name="prune" value="<?php p($prune) ?>" />
|
|
<input type="hidden" name="confirm" value="<?php p($prune) ?>" />
|
|
<input type="submit" value="<?php print_string('prune', 'forum'); ?>" />
|
|
</td>
|
|
|
|
</tr>
|
|
</table>
|
|
</form>
|