diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 197272d270..4616438fd3 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -1306,7 +1306,18 @@ class AttributeDashboard extends AttributeDefinition public function MakeFormField(DBObject $oObject, $oFormField = null) { return null; - } + } + + // if this verb returns false, then GetValue must be implemented + static public function LoadInObject() + { + return false; + } + + public function GetValue($oHostObject) + { + return ''; + } } /**