Skip to content

Commit

Permalink
make flags optional
Browse files Browse the repository at this point in the history
  • Loading branch information
lsmith77 committed Aug 21, 2013
1 parent a62cb46 commit 005cb61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Admin/PageAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ protected function configureFormFields(FormMapper $formMapper)
->add('label', null, array('required' => false))
->add('title')
->add('createDate')
->add('addFormatPattern')
->add('addTrailingSlash')
->add('addLocalePattern')
->add('addFormatPattern', null, array('required' => false))
->add('addTrailingSlash', null, array('required' => false))
->add('addLocalePattern', null, array('required' => false))
->add('body', 'textarea')
;
}
Expand Down

0 comments on commit 005cb61

Please sign in to comment.