summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@yahoo.com>2018-02-01 20:31:00 +0900
committerGitHub <noreply@github.com>2018-02-01 20:31:00 +0900
commitd2f616b5453288dc9ad33f9aaa443c1edb894883 (patch)
tree9953a1ff2e698ffdcb68fedc636891342cf9075f /settings
parent009874a4c2ac9325b0345d9ce4917d6023e68177 (diff)
downloadnextcloud-server-d2f616b5453288dc9ad33f9aaa443c1edb894883.tar.gz
nextcloud-server-d2f616b5453288dc9ad33f9aaa443c1edb894883.zip
Use correct input type for website url
type="url"
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/settings/personal/personal.info.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/settings/personal/personal.info.php b/settings/templates/settings/personal/personal.info.php
index c2dd0b64644..9f1f83621d2 100644
--- a/settings/templates/settings/personal/personal.info.php
+++ b/settings/templates/settings/personal/personal.info.php
@@ -240,7 +240,7 @@ vendor_style('jcrop/css/jquery.Jcrop');
</div>
</div>
<?php } ?>
- <input type="text" name="website" id="website" value="<?php p($_['website']); ?>"
+ <input type="url" name="website" id="website" value="<?php p($_['website']); ?>"
placeholder="<?php p($l->t('Link https://…')); ?>"
autocomplete="on" autocapitalize="none" autocorrect="off"
<?php if(!$_['lookupServerUploadEnabled']) print_unescaped('disabled="1"'); ?>