aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-03-05 20:04:19 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-03-05 20:04:19 +0100
commit2c2308b7830e24409c6f4a52b52a616803b1a515 (patch)
tree7a4346147cbe5621230343cc4c99cab2e46350a3 /src/Wallabag/CoreBundle/Form
parent5bf8f3f164aa95f844a3f4faaa19987a2ea39a99 (diff)
downloadwallabag-2c2308b7830e24409c6f4a52b52a616803b1a515.tar.gz
wallabag-2c2308b7830e24409c6f4a52b52a616803b1a515.tar.zst
wallabag-2c2308b7830e24409c6f4a52b52a616803b1a515.zip
Cleanup form
- Avoid too much hidden data in the form (instead of manually define the submit button and hide the default, use the default one !) - Fix HTML syntax in client_parameters - Add developer link in baggy menu - Fix space between link in material footer
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/ClientType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/ClientType.php b/src/Wallabag/CoreBundle/Form/Type/ClientType.php
index 79feae65..cb6b5e65 100644
--- a/src/Wallabag/CoreBundle/Form/Type/ClientType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/ClientType.php
@@ -15,7 +15,7 @@ class ClientType extends AbstractType
15 { 15 {
16 $builder 16 $builder
17 ->add('redirect_uris', UrlType::class, array('required' => true)) 17 ->add('redirect_uris', UrlType::class, array('required' => true))
18 ->add('save', SubmitType::class) 18 ->add('save', SubmitType::class, array('label' => 'Create new client'))
19 ; 19 ;
20 20
21 $builder->get('redirect_uris') 21 $builder->get('redirect_uris')