Issue #2039961 by klausi: Fixed uri_field() should use uri type as value.

8.0.x
Alex Pott 2013-07-19 10:44:26 +01:00
parent 9830bee62c
commit b64ada17fb
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ class UriItem extends FieldItemBase {
if (!isset(self::$propertyDefinitions)) {
self::$propertyDefinitions['value'] = array(
'type' => 'string',
'label' => t('Text value'),
'type' => 'uri',
'label' => t('URI value'),
);
}
return self::$propertyDefinitions;