getAttributeObjectTypeText() returns value for objtype_user

This commit is contained in:
Uwe Steinmann 2024-07-02 16:23:53 +02:00
parent 75a8a52028
commit 9065dae74c

View File

@ -391,6 +391,9 @@ function getAttributeObjectTypeText($attrdef) { /* {{{ */
case SeedDMS_Core_AttributeDefinition::objtype_documentcontent:
$ot = getMLText("documentcontent");
break;
case SeedDMS_Core_AttributeDefinition::objtype_user:
$ot = getMLText("user");
break;
default:
$ot = getMLText('objtype_unknown');
}