]> git.mjollnir.org Git - moodle.git/commitdiff
Adding missing "/" to self-close input tags.
authorvyshane <vyshane>
Wed, 3 Jan 2007 01:53:52 +0000 (01:53 +0000)
committervyshane <vyshane>
Wed, 3 Jan 2007 01:53:52 +0000 (01:53 +0000)
admin/maintenance.php
admin/timezone.php

index 9b4f2d9bb76117bc0e13757b9ca52a367280198b..0eea6da7cf0fb207839977b426173860246691df 100644 (file)
@@ -39,9 +39,9 @@
     if (file_exists($filename)) {   // We are in maintenance mode
         echo '<center>';
         echo '<form action="maintenance.php" method="post">';
-        echo '<input type="hidden" name="action" value="disable">';
-        echo '<input type="hidden" name="sesskey" value="'.sesskey().'">';
-        echo '<p><input type="submit" value="'.get_string('disable').'"></p>';
+        echo '<input type="hidden" name="action" value="disable" />';
+        echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
+        echo '<p><input type="submit" value="'.get_string('disable').'" /></p>';
         echo '</form>';
         echo '</center>';
     } else {                        // We are not in maintenance mode
@@ -49,9 +49,9 @@
 
         echo '<center>';
         echo '<form action="maintenance.php" method="post">';
-        echo '<input type="hidden" name="action" value="enable">';
-        echo '<input type="hidden" name="sesskey" value="'.sesskey().'">';
-        echo '<p><input type="submit" value="'.get_string('enable').'"></p>';
+        echo '<input type="hidden" name="action" value="enable" />';
+        echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
+        echo '<p><input type="submit" value="'.get_string('enable').'" /></p>';
         echo '<p>'.get_string('optionalmaintenancemessage', 'admin').':</p>';
         echo '<table><tr><td>';
         print_textarea($usehtmleditor, 20, 50, 600, 400, "text");
index 5fe530b6f7788cc0eddaf04920f7c25c29905b31..3c27e2f0847314709700ae92e5b03c7b23a0771d 100644 (file)
@@ -33,8 +33,8 @@
     echo '<center><form action="timezone.php" method="get">';
     echo "$strusers ($strall): ";
     choose_from_menu ($timezones, "zone", 99, get_string("serverlocaltime"), "", "99");
-    echo "<input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\">";
-    echo "<input type=\"submit\" value=\"$strsavechanges\">";
+    echo "<input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\" />";
+    echo "<input type=\"submit\" value=\"$strsavechanges\" />";
     echo "</form></center>";
 
     print_footer();