]> git.mjollnir.org Git - moodle.git/commitdiff
Scheduled backup configuration page is XHTML 1.0 Transitional
authorstronk7 <stronk7>
Sat, 5 Feb 2005 01:11:19 +0000 (01:11 +0000)
committerstronk7 <stronk7>
Sat, 5 Feb 2005 01:11:19 +0000 (01:11 +0000)
backup/config.html

index 3ce9151d4403be1e0e7c2daa20a255c4fe287fc8..ba3adcd3b084e5e67b8173fd06cdfc6b6283ca96 100644 (file)
     $keep_array[500] = "500";
 ?>
 <form method="post" action="backup.php" name="form">
-<?php echo "<input type=\"hidden\" name=\"sesskey\" value=\"".$USER->sesskey."\">"; ?>
+<?php echo "<input type=\"hidden\" name=\"sesskey\" value=\"".$USER->sesskey."\"/>"; ?>
 
 <table cellpadding="9" cellspacing="0" >
 <tr valign="top">
-    <td colspan = 3 align="center"><strong><?php print_string("settings") ?></strong></td>
+    <td colspan ="3" align="center"><strong><?php print_string("settings") ?></strong></td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("includemodules") ?>:</td>
+    <td align="right"><?php print_string("includemodules") ?>:</td>
     <td nowrap="nowrap">
     <?php choose_from_menu($yesno_array, "backup_sche_modules", $backup_config->backup_sche_modules, "") ?>
     <?php choose_from_menu($withwithout_array, "backup_sche_withuserdata", $backup_config->backup_sche_withuserdata, "") ?>
     </td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("metacourse") ?>:</td>
+    <td align="right"><?php print_string("metacourse") ?>:</td>
     <td>
     <?php choose_from_menu($yesno_array, "backup_sche_metacourse", $backup_config->backup_sche_metacourse, "") ?>
     </td>
     </td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("users") ?>:</td>
+    <td align="right"><?php print_string("users") ?>:</td>
     <td>
     <?php choose_from_menu($courseall_array, "backup_sche_users", $backup_config->backup_sche_users, "") ?>
     </td>
     </td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("logs") ?>:</td>
+    <td align="right"><?php print_string("logs") ?>:</td>
     <td>
     <?php choose_from_menu($yesno_array, "backup_sche_logs", $backup_config->backup_sche_logs, "") ?>
     </td>
     </td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("userfiles") ?>:</td>
+    <td align="right"><?php print_string("userfiles") ?>:</td>
     <td>
     <?php choose_from_menu($yesno_array, "backup_sche_userfiles", $backup_config->backup_sche_userfiles, "") ?>
     </td>
     </td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("coursefiles") ?>:</td>
+    <td align="right"><?php print_string("coursefiles") ?>:</td>
     <td>
     <?php choose_from_menu($yesno_array, "backup_sche_coursefiles", $backup_config->backup_sche_coursefiles, "") ?>
     </td>
     </td>
 </tr>
 <tr valign="top">
-    <td align="right"><p><?php print_string("keep") ?>:</td>
+    <td align="right"><?php print_string("keep") ?>:</td>
     <td>
     <?php
         choose_from_menu($keep_array, "backup_sche_keep", $backup_config->backup_sche_keep, "");
     </td>
 </tr>
 <tr valign="top">
-    <td colspan = 3 align="center"><strong><?php print_string("schedule") ?></strong></td>
+    <td colspan="3" align="center"><strong><?php print_string("schedule") ?></strong></td>
 </tr>
 <tr valign="top">
-    <td colspan = 3 align="center">
+    <td colspan="3" align="center">
         <?php print_string("active") ?>: <?php choose_from_menu($yesno_array, "backup_sche_active", $backup_config->backup_sche_active, "") ?>
     </td>
 </tr>
                 $stddayofweek = ($i+$firstdayofweek) % 7;
                 //Calculate the status of the checkbox
                 if (substr($backup_config->backup_sche_weekdays,$stddayofweek,1) == "1") {
-                    $strchecked = " checked";
+                    $strchecked = " checked=\"checked\"";
                 } else {
                     $strchecked = "";
                 }
-                $check_names[] = "<input type=\"checkbox\" name=\"dayofweek_$stddayofweek\" value=\"1\"$strchecked>";
+                $check_names[] = "<input type=\"checkbox\" name=\"dayofweek_$stddayofweek\" value=\"1\"$strchecked />";
                 $i++;
             }
             $table->align = array("center","center","center","center","center","center","center");
     </td>
 </tr>
 <tr valign="top">
-    <td colspan = 3 align="center">
+    <td colspan ="3" align="center">
         <?php print_string("executeat") ?>: <?php print_time_selector("backup_sche_hour","backup_sche_minute",make_timestamp(2000,1,1,$backup_config->backup_sche_hour,$backup_config->backup_sche_minute)) ?>
     </td>
 </tr>
 <tr valign="top">
-    <td colspan = 3 align="center">
-        <?php print_string("saveto") ?>: <input name="backup_sche_destination" type="text" size="40" value="<?php p($backup_config->backup_sche_destination) ?>"><?php helpbutton("directorypaths", strip_tags(get_string("directorypaths"))) ?><br /><?php if (!empty($sche_destination_error)) { formerr($sche_destination_error); echo "<br />"; } ?><?php print_string("backupsavetohelp") ?>
+    <td colspan ="3" align="center">
+        <?php print_string("saveto") ?>: <input name="backup_sche_destination" type="text" size="40" value="<?php p($backup_config->backup_sche_destination) ?>" /><?php helpbutton("directorypaths", strip_tags(get_string("directorypaths"))) ?><br /><?php if (!empty($sche_destination_error)) { formerr($sche_destination_error); echo "<br />"; } ?><?php print_string("backupsavetohelp") ?>
     </td>
 </tr>
 <tr>
     <td colspan="3" align="center">
-        <input type="submit" value="<?php print_string("savechanges") ?>"></td>
+        <input type="submit" value="<?php print_string("savechanges") ?>" /></td>
 </tr>
 </table>