Skip to content

Commit

Permalink
EZP-29290: Author Field Type prefilled by empty value by default (#2417)
Browse files Browse the repository at this point in the history
  • Loading branch information
konradoboza authored and Łukasz Serwatka committed Aug 29, 2018
1 parent 372adb8 commit ca5dc00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Repository/Tests/FieldType/AuthorIntegrationTest.php
Expand Up @@ -42,7 +42,7 @@ public function getSettingsSchema()
return array(
'defaultAuthor' => array(
'type' => 'choice',
'default' => Type::DEFAULT_CURRENT_USER,
'default' => Type::DEFAULT_VALUE_EMPTY,
),
);
}
Expand All @@ -55,7 +55,7 @@ public function getSettingsSchema()
public function getValidFieldSettings()
{
return array(
'defaultAuthor' => Type::DEFAULT_CURRENT_USER,
'defaultAuthor' => Type::DEFAULT_VALUE_EMPTY,
);
}

Expand Down

0 comments on commit ca5dc00

Please sign in to comment.