DataObjects/Core_notify.php
authorAlan Knowles <alan@roojs.com>
Wed, 14 Oct 2015 07:48:59 +0000 (15:48 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 14 Oct 2015 07:48:59 +0000 (15:48 +0800)
DataObjects/Core_notify.php

index da8a9f0..e5c17ee 100644 (file)
@@ -52,7 +52,10 @@ class Pman_Core_DataObjects_Core_notify extends DB_DataObject
     {
         if ($set !== false) {
             $this->person_table = is_object($set) ? $set->tableName() : '';
-            $col = $this->person_table  == "Person" ? 'person_id' : $person_table . '_id';
+            
+            $person_table = empty($this->person_table) ? 'Person' : $this->person_table;
+            $col = $person_table  == "Person" ? 'person_id' : $person_table . '_id';
+            
             $this->{$col} = is_object($set) ? $set->id : $set;
             return;
         }