2003-09-29 03:06:30 +00:00
|
|
|
<?PHP
|
2003-09-21 17:08:41 +00:00
|
|
|
global $CFG, $THEME;
|
|
|
|
require_once("../../config.php");
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<FORM name="form" method="post" <?=$onsubmit ?> action="editcategories.php">
|
2003-09-29 03:06:30 +00:00
|
|
|
<table class=generalbox cellpadding=5 bgcolor="<?php p($THEME->cellheading)?>">
|
2003-09-21 17:08:41 +00:00
|
|
|
<tr valign=top>
|
|
|
|
<td align=right><p><b><?php echo get_string("name") ?>:</b></p></td>
|
|
|
|
<td>
|
|
|
|
<INPUT type="text" name="name" size=30 value="<?=$name ?>">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<td colspan=2>
|
|
|
|
<p align=center>
|
|
|
|
<input type="hidden" name=id value="<?=$cm->id ?>">
|
|
|
|
<input type="hidden" name=action value="<?=$action?>">
|
|
|
|
<input type="hidden" name=confirm value=1>
|
2003-09-29 03:06:30 +00:00
|
|
|
<input type="hidden" name=cat value=<?php p($cat) ?>>
|
|
|
|
<input type="submit" value="<?php print_string("savechanges") ?>">
|
|
|
|
<input type="reset" value="<?php print_string("back","glossary") ?>" onclick="javascript:history.go(-1);">
|
2003-09-21 17:08:41 +00:00
|
|
|
</P>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
</form>
|