]> git.mjollnir.org Git - moodle.git/commitdiff
Added missing html closing tags in function redirect() before the die call. MDL-7861.
authorvyshane <vyshane>
Wed, 20 Dec 2006 05:56:38 +0000 (05:56 +0000)
committervyshane <vyshane>
Wed, 20 Dec 2006 05:56:38 +0000 (05:56 +0000)
lib/weblib.php

index 6d8e41446fae96961711bd43095681d3e41b5c8d..71dd72bcf505e85f2851e2f41ce47f5b942bb409 100644 (file)
@@ -4829,6 +4829,9 @@ function redirect($url, $message='', $delay=-1) {
 -->
 </script>
 <?php
+    echo '</div> <!-- End content div -->';
+    echo '</body>';
+    echo '</html>';
     die;
 }