DataObjects/ProjectDirectory.php
[Pman.Core] / DataObjects / ProjectDirectory.php
index 6930160..c8f3fa2 100644 (file)
@@ -68,19 +68,22 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
      */
     function projects($au)
     {
-        $c = clone ($this);
         if (empty($au)) {
             $p = DB_DataObject::Factory('Projects');
             $p->get('code',  '*PUBLIC');
             return array($p->id);          
             
         } 
+        $c = clone ($this);
         
         if (is_array($au)) {
             $c->whereAddIn('person_id', $au, 'int');
         } else {
             $c->person_id = $au->id;
         }
+        $c->selectAdd();
+        // people may have multiple roles for a project..
+        $c->selectAdd('distinct(project_id) as project_id');
         return $c->fetchAll('project_id');
     }
         /**