mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
20 lines
776 B
HTML
20 lines
776 B
HTML
<?PHP
|
|
// Make sure all variables are defined
|
|
|
|
?>
|
|
<form action="admin.php" method="post" enctype="multipart/form-data">
|
|
<fieldset class="invisiblefieldset">
|
|
<input type="hidden" name="userid" value="<?php print $userid; ?>" />
|
|
<input type="hidden" name="groupid" value="<?php print $groupid ?>" />
|
|
<input type="hidden" name="action" value="<?php print $action; ?>" />
|
|
<input type="hidden" name="id" value="<?php print $cm->id ?>" />
|
|
<input type="hidden" name="wikipage" value="<?php print $wikipage?>" />
|
|
<?php
|
|
$pageflags_table=wiki_admin_setpageflags_list($pageflagstatus);
|
|
print_table($pageflags_table);
|
|
?>
|
|
<br />
|
|
<div class="boxaligncenter">
|
|
<input type="submit" name="proceed" value="<?php print get_string("setpageflags","wiki"); ?>" />
|
|
</div></fieldset></form>
|