]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19793 Upgraded calls to helpbutton, print_simple_box* and notify
authornicolasconnault <nicolasconnault>
Tue, 18 Aug 2009 04:29:57 +0000 (04:29 +0000)
committernicolasconnault <nicolasconnault>
Tue, 18 Aug 2009 04:29:57 +0000 (04:29 +0000)
calendar/preferences.php

index d85ab8385436332da6ae44ab10fb5d751675ea98..692d985ef3158cf988384761a9587bcd135e0f4b 100644 (file)
@@ -73,7 +73,7 @@
 
     echo $OUTPUT->heading($strpreferences);
 
-    print_simple_box_start("center");
+    echo $OUTPUT->box_start('generalbox boxaligncenter');
 
     $prefs->timeformat = get_user_preferences('calendar_timeformat', '');
     $prefs->startwday  = get_user_preferences('calendar_startwday', CALENDAR_STARTING_WEEKDAY);
@@ -82,7 +82,7 @@
     $prefs->persistflt = get_user_preferences('calendar_persistflt', 0);
 
     include('./preferences.html');
-    print_simple_box_end();
+    echo $OUTPUT->box_end();
 
     echo $OUTPUT->footer();