summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-03-02 21:26:36 +0100
committerGitHub <noreply@github.com>2018-03-02 21:26:36 +0100
commit5053877c45230e06f646cadb27d293b5e5848e56 (patch)
tree236daeed9f93554096b481169502ba09eed23e0a
parent1953a11dfa84611cf6a70ecf4d057072f54b0f64 (diff)
parentd838789259064d44e801933ff9910078d188bdf9 (diff)
downloadnextcloud-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.php2
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>