From: Edward Date: Wed, 29 Apr 2015 04:08:33 +0000 (+0800) Subject: DataObjects/Core_notify.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=1d0694139a6f1817a227e082891f2918e2b7dec4 DataObjects/Core_notify.php --- diff --git a/DataObjects/Core_notify.php b/DataObjects/Core_notify.php index 40063d01..287e3079 100644 --- a/DataObjects/Core_notify.php +++ b/DataObjects/Core_notify.php @@ -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; }