MDL-30828 mod_feedback: fixed sorting when viewing responses

This commit is contained in:
Andrew Davis 2011-12-28 15:28:17 +07:00
parent 216f6d8e9d
commit a5448b3f6b
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ if ($do_show == 'showentries') {
$baseurl = new moodle_url('/mod/feedback/show_entries.php');
$baseurl->params(array('id'=>$id, 'do_show'=>$do_show, 'showall'=>$showall));
$tablecolumns = array('userpic', 'fullname', 'c.timemodified');
$tablecolumns = array('userpic', 'fullname', 'completed_timemodified');
$tableheaders = array(get_string('userpic'), get_string('fullnameuser'), get_string('date'));
if (has_capability('mod/feedback:deletesubmissions', $context)) {