Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
cs fix and imagine block label is meant to be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Oct 8, 2013
1 parent a2685d8 commit 6221845
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Admin/Imagine/SlideshowBlockAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ protected function configureFormFields(FormMapper $formMapper)
'admin_code' => $this->embeddedAdminCode,
'sortable' => 'position',
))
->end();
->end()
;

if (null === $this->getParentFieldDescription()) {
$formMapper
Expand Down
2 changes: 1 addition & 1 deletion Resources/config/doctrine-phpcr/ImagineBlock.phpcr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<locale name="locale"/>

<field name="label" type="string" translated="true"/>
<field name="label" type="string" translated="true" nullable="true"/>
<field name="linkUrl" type="string" translated="true" nullable="true"/>
<field name="filter" type="string" nullable="true"/>

Expand Down

0 comments on commit 6221845

Please sign in to comment.