From be2304e4bb659a4f545a9f09d8d013c6c77f468d Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Fri, 29 Nov 2013 10:01:04 -0500 Subject: [PATCH] Fixed default documents listing order (reverse-alphabetical to alphabetical) - refs BT#7070 --- main/document/document.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/document/document.php b/main/document/document.php index 1aa63eb18d..454b67088b 100644 --- a/main/document/document.php +++ b/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']);