2004-06-02 12:45:55 +00:00
|
|
|
<?PHP
|
|
|
|
// Make sure all variables are defined
|
|
|
|
|
|
|
|
?>
|
2007-01-04 23:59:55 +00:00
|
|
|
<form action="admin.php" method="post" enctype="multipart/form-data">
|
2007-01-09 08:21:29 +00:00
|
|
|
<fieldset class="invisiblefieldset">
|
2007-01-04 23:59:55 +00:00
|
|
|
<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?>" />
|
2004-09-18 22:36:09 +00:00
|
|
|
<?php
|
2004-06-02 12:45:55 +00:00
|
|
|
$pagelist=wiki_admin_checklinks_list();
|
|
|
|
choose_from_menu($pagelist, "pagetocheck", $wikipage, "");
|
|
|
|
?>
|
2004-09-18 22:36:09 +00:00
|
|
|
<input type="submit" name="proceed" value="<?php print get_string("checklinks","wiki"); ?>" />
|
2007-01-09 08:21:29 +00:00
|
|
|
</center></fieldset></form>
|