aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type/EditEntryType.php')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/EditEntryType.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/EditEntryType.php b/src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
index 1627cc44..4bceaf5f 100644
--- a/src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/EditEntryType.php
@@ -22,6 +22,11 @@ class EditEntryType extends AbstractType
22 'required' => false, 22 'required' => false,
23 'label' => 'entry.edit.url_label', 23 'label' => 'entry.edit.url_label',
24 ]) 24 ])
25 ->add('origin_url', TextType::class, [
26 'required' => false,
27 'property_path' => 'originUrl',
28 'label' => 'entry.edit.origin_url_label',
29 ])
25 ->add('save', SubmitType::class, [ 30 ->add('save', SubmitType::class, [
26 'label' => 'entry.edit.save_label', 31 'label' => 'entry.edit.save_label',
27 ]) 32 ])