MDL-34852 add missing timecreated form data

This commit is contained in:
Petr Škoda 2012-08-15 09:28:19 +02:00 committed by Aparup Banerjee
parent b6582000f5
commit 3f038004e6
2 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ class enrol_manual_user_enrolment_form extends moodleform {
$this->set_data(array(
'ue' => $ue->id,
'status' => $ue->status,
'timecreated' => $ue->timecreated,
'timestart' => $ue->timestart,
'timeend' => $ue->timeend
));

View File

@ -64,6 +64,7 @@ class enrol_self_user_enrolment_form extends moodleform {
$this->set_data(array(
'ue' => $ue->id,
'status' => $ue->status,
'timecreated' => $ue->timecreated,
'timestart' => $ue->timestart,
'timeend' => $ue->timeend
));