From 98187bf942de2db6419b3d848c96e3955715de06 Mon Sep 17 00:00:00 2001 From: Michael Letzgus Date: Sat, 18 Mar 2017 16:00:21 +0100 Subject: Fix value of attribute "autocapitalize" Change attribute "autocapitalize" from value "off" to "none" regarding to apples dev guide: https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/Attributes.html#//apple_ref/doc/uid/TP40008058-autocapitalize Signed-off-by: Michael Letzgus --- core/templates/installation.php | 16 ++++++++-------- core/templates/login.php | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'core') diff --git a/core/templates/installation.php b/core/templates/installation.php index 058049d8946..6a0e3f93857 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -41,14 +41,14 @@ script('core', [ + autocomplete="off" autocapitalize="none" autocorrect="off" autofocus required>

+ autocomplete="off" autocapitalize="none" autocorrect="off" required> @@ -68,7 +68,7 @@ script('core', [ + autocomplete="off" autocapitalize="none" autocorrect="off"> @@ -105,13 +105,13 @@ script('core', [ + autocomplete="off" autocapitalize="none" autocorrect="off">

+ autocomplete="off" autocapitalize="none" autocorrect="off"> @@ -121,7 +121,7 @@ script('core', [

@@ -131,7 +131,7 @@ script('core', [ + autocomplete="off" autocapitalize="none" autocorrect="off">

@@ -140,7 +140,7 @@ script('core', [ + autocomplete="off" autocapitalize="none" autocorrect="off">

t( 'Please specify the port number along with the host name (e.g., localhost:5432).' )); ?> diff --git a/core/templates/login.php b/core/templates/login.php index 221242c0dcb..352893bd0dc 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -43,7 +43,7 @@ script('core', [ placeholder="t('Username or email')); ?>" value="" - autocomplete="on" autocapitalize="off" autocorrect="off" required> + autocomplete="on" autocapitalize="none" autocorrect="off" required>

@@ -51,7 +51,7 @@ script('core', [ - autocomplete="on" autocapitalize="off" autocorrect="off" required> + autocomplete="on" autocapitalize="off" autocorrect="none" required>

-- cgit v1.2.3