DbObject: add missing call to onLoadFromDb

This commit is contained in:
Thomas Gelf 2015-07-21 15:12:23 +02:00
parent c00d708327
commit 4881cd3860

View File

@ -516,6 +516,7 @@ abstract class DbObject
$this->loadedFromDb = true;
$this->loadedProperties = $this->properties;
$this->hasBeenModified = false;
$this->onLoadFromDb();
return $this;
}