From f4cd95d856b69edde73b3c9d7d531e3ca914bc91 Mon Sep 17 00:00:00 2001 From: Julian Prud'homme Date: Wed, 1 Aug 2007 14:17:49 +0200 Subject: [PATCH] [svn r12824] Order the quizz by Title --- main/mySpace/myStudents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/mySpace/myStudents.php b/main/mySpace/myStudents.php index bb67d18681..8a6fd2ee54 100644 --- a/main/mySpace/myStudents.php +++ b/main/mySpace/myStudents.php @@ -647,7 +647,7 @@ if(!empty($_GET['student'])) $sqlExercices = " SELECT quiz.title,id FROM ".$a_infosCours['db_name'].".".$tbl_course_quiz." AS quiz - WHERE active='1' + WHERE active='1' ORDER BY quiz.title ASC "; $resultExercices = api_sql_query($sqlExercices);