From 4881cd3860a63bf9dd4a5d7d934a546501e4ffec Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 21 Jul 2015 15:12:23 +0200 Subject: [PATCH] DbObject: add missing call to onLoadFromDb --- library/Director/Data/Db/DbObject.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Director/Data/Db/DbObject.php b/library/Director/Data/Db/DbObject.php index e04242b4..3d88a120 100644 --- a/library/Director/Data/Db/DbObject.php +++ b/library/Director/Data/Db/DbObject.php @@ -516,6 +516,7 @@ abstract class DbObject $this->loadedFromDb = true; $this->loadedProperties = $this->properties; $this->hasBeenModified = false; + $this->onLoadFromDb(); return $this; }