mirror of
https://github.com/moodle/moodle.git
synced 2025-02-02 22:29:18 +01:00
39fcb981b8
I've left out stuff that didn't seem necessary ... including a lot of the Wiki plugins which were quote large... I'm not sure if this is currently working ... I'm about to try it out.
22 lines
781 B
HTML
22 lines
781 B
HTML
<?PHP
|
|
// Make sure all variables are defined
|
|
|
|
?>
|
|
<FORM ACTION="admin.php" METHOD="POST" ENCTYPE="multipart/form-data">
|
|
<INPUT TYPE="HIDDEN" NAME="userid" VALUE="<? print $userid; ?>">
|
|
<INPUT TYPE="HIDDEN" NAME="groupid" VALUE="<? print $groupid ?>">
|
|
<INPUT TYPE="HIDDEN" NAME="action" VALUE="<? print $action; ?>">
|
|
<INPUT TYPE="HIDDEN" NAME="id" VALUE="<? print $cm->id ?>">
|
|
<INPUT TYPE="HIDDEN" NAME="wikipage" VALUE="<? print $wikipage?>">
|
|
<?
|
|
$strip_table=wiki_admin_strip_list($form->pagestostrip, $form->version, $err);
|
|
print_table($strip_table);
|
|
?>
|
|
<center>
|
|
<?
|
|
if(!count($strip_table->data)) {
|
|
print get_string("nothingtostrip","wiki")."<br><br>";
|
|
}
|
|
?>
|
|
<input type="submit" name="proceed" value="<? print get_string("strippages","wiki"); ?>">
|
|
</center> |