MDL-17321 restore roll dates - prevent wrong rolls to 0 happening to teachers

This commit is contained in:
stronk7
2009-01-02 16:53:30 +00:00
parent 5c8cb3a6a4
commit ef2286f2d8
2 changed files with 7 additions and 2 deletions
+2 -2
View File
@@ -22,8 +22,8 @@
$course_header->course_fullname = stripslashes_safe($form1->fullname); //"update_FullName";
/// Roll dates only if the backup course has a start date
/// (some formats like main page, social..., haven't it and rolling dates
/// from 0 produces crazy dates. MDL-10125
if ($course_header->course_startdate) {
/// from 0 produces crazy dates. MDL-10125 and we have passed some custom startyear/month/day. MDL-12922
if ($course_header->course_startdate && !empty($form1->startyear)) {
$form1->startdate = make_timestamp($form1->startyear, $form1->startmonth, $form1->startday);
$currentcoursestartdate = $course_header->course_startdate;
$coursestartdatedateoffset = $form1->startdate - $currentcoursestartdate;
+5
View File
@@ -292,6 +292,11 @@ function selectItemInCheckboxByName(formId, checkName, checked ) {
echo '<input type="hidden" name="startday" value="0" />';
}
echo "</td></tr>";
} else {
/// If user cannot create course, prevent any change in startyear/month/day (so restore wont calculate any roll. MDL-12922
echo '<input type="hidden" name="startyear" value="0" />';
echo '<input type="hidden" name="startmonth" value="0" />';
echo '<input type="hidden" name="startday" value="0" />';
}
//Line
echo "<tr><td colspan=\"4\"><hr /></td></tr>";