Merge branch 'wip-mdl-31405-new' of git://github.com/rajeshtaneja/moodle

This commit is contained in:
Dan Poltawski 2013-10-22 11:52:26 +08:00 committed by Eloy Lafuente (stronk7)
commit 59dca9505b

View file

@ -3882,18 +3882,12 @@ function assignment_reset_userdata($data) {
// Updating dates - shift may be negative too.
if ($data->timeshift) {
$plugintypestrkey = 'type'.$this->type;
if (get_string_manager()->string_exists($plugintypestrkey, 'assignment')) {
$typestr = get_string_manager()->get_string($plugintypestrkey, 'assignment');
} else {
$typestr = get_string_manager()->get_string($plugintypestrkey, 'assignment_'.$this->type);
}
shift_course_mod_dates('assignment',
array('timedue', 'timeavailable'),
$data->timeshift,
$data->courseid);
$status[] = array('component' => get_string('modulenameplural', 'assignment'),
'item' => get_string('datechanged').': '.$typestr,
'item' => get_string('datechanged'),
'error' => false);
}