diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-03-02 21:26:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-02 21:26:36 +0100 |
commit | 5053877c45230e06f646cadb27d293b5e5848e56 (patch) | |
tree | 236daeed9f93554096b481169502ba09eed23e0a | |
parent | 1953a11dfa84611cf6a70ecf4d057072f54b0f64 (diff) | |
parent | d838789259064d44e801933ff9910078d188bdf9 (diff) | |
download | nextcloud-server-5053877c45230e06f646cadb27d293b5e5848e56.tar.gz nextcloud-server-5053877c45230e06f646cadb27d293b5e5848e56.zip |
Merge pull request #8619 from coliff/patch-1
Use correct input type for the url entry
-rw-r--r-- | apps/theming/templates/settings-admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/templates/settings-admin.php b/apps/theming/templates/settings-admin.php index 1b8ed87bb0d..1dfa5cdc1db 100644 --- a/apps/theming/templates/settings-admin.php +++ b/apps/theming/templates/settings-admin.php @@ -48,7 +48,7 @@ style('theming', 'settings-admin'); <div> <label> <span><?php p($l->t('Web address')) ?></span> - <input id="theming-url" type="text" placeholder="<?php p($l->t('Web address https://…')); ?>" value="<?php p($_['url']) ?>" maxlength="500" /> + <input id="theming-url" type="url" placeholder="<?php p($l->t('Web address https://…')); ?>" value="<?php p($_['url']) ?>" maxlength="500" /> <div data-setting="url" data-toggle="tooltip" data-original-title="<?php p($l->t('Reset to default')); ?>" class="theme-undo icon icon-history"></div> </label> </div> |