mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
19 lines
748 B
HTML
19 lines
748 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
|
|
$pagelist=wiki_admin_checklinks_list();
|
|
echo html_writer::select($pagelist, "pagetocheck", $wikipage, false);
|
|
?>
|
|
<input type="submit" name="proceed" value="<?php print get_string("checklinks","wiki"); ?>" />
|
|
</fieldset>
|
|
</form>
|