Fixed default documents listing order (reverse-alphabetical to alphabetical) - refs BT#7070

1.9.x
Yannick Warnier 12 years ago
parent 47a6c7e199
commit be2304e4bb
  1. 2
      main/document/document.php

@ -1268,7 +1268,7 @@ if (count($row) == 12) {
$default_column = $is_allowed_to_edit ? 2 : 1;
$tablename = $is_allowed_to_edit ? 'teacher_table' : 'student_table';
$table = new SortableTableFromArrayConfig($sortable_data, $default_column, 20, $tablename, $column_show, $column_order, 'ASC', true);
$table = new SortableTableFromArrayConfig($sortable_data, $default_column, 20, $tablename, $column_show, $column_order, 'ASC');
if (isset($_GET['keyword'])) {
$query_vars['keyword'] = Security::remove_XSS($_GET['keyword']);

Loading…
Cancel
Save