Skip to content
Snippets Groups Projects
Commit a99f5662 authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge pull request #115 from putneyj/develop

Reviewed By: Peter 06/18/12 
parents dd04f4a3 169700f9
No related branches found
No related tags found
No related merge requests found
......@@ -94,8 +94,8 @@ class Dept {
if(!$this->members && $this->getNumStaff()){
$sql='SELECT m.staff_id FROM '.STAFF_TABLE.' m '
.'WHERE m.dept_id='.db_input($this->getId())
.' AND s.staff_id IS NOT NULL '
.'ORDER BY s.lastname, s.firstname';
.' AND m.staff_id IS NOT NULL '
.'ORDER BY m.lastname, m.firstname';
if(($res=db_query($sql)) && db_num_rows($res)){
while(list($id)=db_fetch_row($res))
if(($staff=Staff::lookup($id)) && $staff->isAvailable())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment