aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/EntryType.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2015-04-15 17:29:28 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2015-04-15 17:29:28 +0200
commit98510a4189186c8dcc3f1bf38843d935ed3d1859 (patch)
treea5a2186fb51bd2bf999c58606f3e42510eb4200d /src/Wallabag/CoreBundle/Form/Type/EntryType.php
parent04aaa199b780d71ead5f1d2ec39e38085431336d (diff)
parentc7d3bf1671fbd2f69d58394e6478e7c532f1f6e4 (diff)
downloadwallabag-98510a4189186c8dcc3f1bf38843d935ed3d1859.tar.gz
wallabag-98510a4189186c8dcc3f1bf38843d935ed3d1859.tar.zst
wallabag-98510a4189186c8dcc3f1bf38843d935ed3d1859.zip
Merge pull request #1180 from wallabag/v2patch
Add some required
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 cfd64473..9a64def5 100644
--- a/src/Wallabag/CoreBundle/Form/Type/EntryType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/EntryType.php
@@ -10,7 +10,7 @@ class EntryType extends AbstractType
10 public function buildForm(FormBuilderInterface $builder, array $options) 10 public function buildForm(FormBuilderInterface $builder, array $options)
11 { 11 {
12 $builder 12 $builder
13 ->add('url', 'url') 13 ->add('url', 'url', array('required' => true))
14 ->add('save', 'submit') 14 ->add('save', 'submit')
15 ; 15 ;
16 } 16 }