DataObjects/Core_notify.php
authorEdward <edward@roojs.com>
Wed, 29 Apr 2015 04:08:33 +0000 (12:08 +0800)
committerEdward <edward@roojs.com>
Wed, 29 Apr 2015 04:08:33 +0000 (12:08 +0800)
DataObjects/Core_notify.php

index 40063d0..287e307 100644 (file)
@@ -55,9 +55,11 @@ class Pman_Core_DataObjects_Core_notify extends DB_DataObject
             return;
         }
         
-        $person_table = 
-        $c = DB_DataObject::Factory('Person');
-        $c->get($this->person_id);
+        $person_table = empty($this->person_table) ? 'Person' : $this->person_table;
+        $col = $person_table == "Person" ? 'person_id' : $person_table . '_id';
+            
+        $c = DB_DataObject::Factory($person_table);
+        $c->get($col);
         return $c;
         
     }