diff --git a/admin/reports_students.inc.php b/admin/reports_students.inc.php index 03312bf..1f0b85e 100644 --- a/admin/reports_students.inc.php +++ b/admin/reports_students.inc.php @@ -434,6 +434,13 @@ $report_students_fields = array( 'table' => "CAST(projects.projectnumber AS UNSIGNED) AS GVRSFTBL, CONCAT(projectcategories.category_shortform, ' ', projects.projectnumber, ' ', projectdivisions.division_shortform)", 'table_sort' => 'GVRSFTBL'), + 'easyparse_allnames' => array( + 'name' => "Easy Parse -- All Student Names (REQUIRES MYSQL 5.0) ", + 'header' => 'Student(s)', + 'width' => 3.0, + 'table' => "GROUP_CONCAT(students.lastname, ',', students.firstname ORDER BY students.lastname SEPARATOR ':')", + 'group_by' => array('students.registrations_id')), + );