DataObjects/Core_watch.php
[Pman.Core] / DataObjects / ProjectDirectory.php
index 4d40e2b..ec32fac 100644 (file)
@@ -97,12 +97,12 @@ class Pman_Core_DataObjects_ProjectDirectory extends DB_DataObject
         //echo '<PRE>';print_R($this);exit;
         
         if (is_array($pr)) {
-            $c->whereAddIn('project_id', $pr, 'int');
+            $c->whereAddIn("{$this->tableName()}.project_id", $pr, 'int');
         } else {
             $c->project_id = $pr->id;
         }
         $c->selectAdd();
-        $c->selectAdd('person_id');
+        $c->selectAdd("{$this->tableName()}.person_id as person_id");
         return $c->fetchAll('person_id');