From 5e5f2000218d41c8af22bbea7aee8382078cf4bb Mon Sep 17 00:00:00 2001 From: Andrew O'Neil Date: Tue, 2 Oct 2007 04:57:24 +0000 Subject: [PATCH] Correct comment (merged from 2.1.0 branch, r42718) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@42925 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/DataObject.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/model/DataObject.php b/core/model/DataObject.php index 79ca54695..875df2bc3 100644 --- a/core/model/DataObject.php +++ b/core/model/DataObject.php @@ -193,8 +193,8 @@ class DataObject extends Controller { /** * Returns true if this object "exists", i.e., has a sensible value. - * The default behaviour for a DataObject is to return true, overload - * this in subclasses, for example, an empty DataObject record could return false. + * The default behaviour for a DataObject is to return true if + * the object exists in the database, you can override this in subclasses. * * @return boolean true if this object exists */