Increase email field size

Fall back to projectnumber sorting after projectsort (incase people manually set the project numbers in the project number field, and leave the projectsort empty
This commit is contained in:
james 2009-03-24 15:08:51 +00:00
parent 03f1bf3299
commit 4b3455f730

View File

@ -78,7 +78,7 @@ $report_students_fields = array(
'header' => '#',
'width' => 0.6,
'table' => 'projects.projectnumber',
'table_sort' => 'projects.projectsort'),
'table_sort' => 'projects.projectsort, projects.projectnumber'),
'last_name' => array(
'name' => 'Student -- Last Name',
@ -144,7 +144,7 @@ $report_students_fields = array(
'email' => array(
'name' => 'Student -- Email',
'header' => 'Email',
'width' => 1.75,
'width' => 2.25,
'scalable' => true,
'table' => 'students.email'),