From 327d9339c4b910e4538b5d8f98400ceab1718cac Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Tue, 14 Aug 2012 09:12:32 -0400
Subject: [PATCH] Disable autocapitalization in login form on iPad/iPhone (#1488609)

---
 program/include/html.php |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/program/include/html.php b/program/include/html.php
index 0e89d77..c15ef45 100644
--- a/program/include/html.php
+++ b/program/include/html.php
@@ -317,7 +317,8 @@
 {
     protected $tagname = 'input';
     protected $type = 'text';
-    protected $allowed = array('type','name','value','size','tabindex',
+    protected $allowed = array(
+        'type','name','value','size','tabindex','autocapitalize',
         'autocomplete','checked','onchange','onclick','disabled','readonly',
         'spellcheck','results','maxlength','src','multiple','placeholder');
 

--
Gitblit v1.9.1