Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@yahoo.com>2018-03-02 10:49:56 +0300
committerGitHub <noreply@github.com>2018-03-02 10:49:56 +0300
commitd838789259064d44e801933ff9910078d188bdf9 (patch)
tree8ee203d4d2cf2cc6161980dc68847d09e1cb3937 /apps/theming/templates
parent777313db42d386f39338a5bc007724b95f39b9b2 (diff)
Use correct input type for the url entry
Change `type="text"` to `type="url"`
Diffstat (limited to 'apps/theming/templates')
-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>