Line 1412 in /home/bradc/public_html/vendor/silverstripe/framework/src/ORM/DataObject.php
1403 "Object is of class '{$this->ObsoleteClassName}' which doesn't exist - " . 1404 "you need to change the ClassName before you can write it" 1405 ); 1406 } 1407 1408 // Note: Validation can only be disabled at the global level, not per-model 1409 if (DataObject::config()->uninherited('validation_enabled')) { 1410 $result = $this->validate(); 1411 if (!$result->isValid()) { 1412 return new ValidationException($result); 1413 } 1414 } 1415 return null; 1416 } 1417 1418 /**