MINOR Typo in DataObject->__destroy() (#4210)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@78727 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-06-09 20:42:42 +00:00
parent bdeda543c9
commit 2f020b5c83

View File

@ -289,7 +289,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
$this->components = null;
$this->destroyed = true;
$this->record = null;
$this->orignal = null;
$this->original = null;
$this->changed = null;
$this->flushCache();
}