aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/EntryType.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type/EntryType.php')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/EntryType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryType.php b/src/Wallabag/CoreBundle/Form/Type/EntryType.php
index 839bc25c..0532bf10 100644
--- a/src/Wallabag/CoreBundle/Form/Type/EntryType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/EntryType.php
@@ -11,7 +11,7 @@ class EntryType extends AbstractType
11 public function buildForm(FormBuilderInterface $builder, array $options) 11 public function buildForm(FormBuilderInterface $builder, array $options)
12 { 12 {
13 $builder 13 $builder
14 ->add('url', 'url') 14 ->add('url', 'url', array('required' => true))
15 ->add('save', 'submit') 15 ->add('save', 'submit')
16 ; 16 ;
17 } 17 }