mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00
workaround by Dan for bug #6130, fixed some warnings; merged from MOODLE_16_STABLE
This commit is contained in:
parent
63aea8815d
commit
639835274c
2 changed files with 5 additions and 2 deletions
|
@ -29,9 +29,9 @@
|
|||
<?php print_string('eventdate', 'calendar'); ?>:
|
||||
</td>
|
||||
<td>
|
||||
<?php print_date_selector('startday', 'startmon', 'startyr', $form->timestart);?>
|
||||
<?php print_date_selector('startday', 'startmon', 'startyr', (int)$form->timestart);?>
|
||||
<?php print_string('eventtime', 'calendar');?>
|
||||
<?php print_time_selector('starthr', 'startmin', $form->timestart) ?>
|
||||
<?php print_time_selector('starthr', 'startmin', (int)$form->timestart) ?>
|
||||
<?php if (isset($err['timestart'])) formerr($err['timestart']); ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue