diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2017-08-29 10:34:14 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2017-08-29 10:34:14 +0000 |
commit | a4d653b54cb71a29242875648c95d68c80367899 (patch) | |
tree | e54368629db0bc9bbcf2487fcf2efda47cd1034a /scripts/forms.php | |
parent | 5539c7fbbe8805e720197bdca95476642c7c713f (diff) | |
download | pmwiki.svn-a4d653b54cb71a29242875648c95d68c80367899.tar.bz2 |
Add title input attribute.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3325 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/forms.php')
-rw-r--r-- | scripts/forms.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/forms.php b/scripts/forms.php index d8bfeff0..5bae81b6 100644 --- a/scripts/forms.php +++ b/scripts/forms.php @@ -11,7 +11,7 @@ # $InputAttrs are the attributes we allow in output tags SDV($InputAttrs, array('name', 'value', 'id', 'class', 'rows', 'cols', 'size', 'maxlength', 'action', 'method', 'accesskey', 'tabindex', 'multiple', - 'checked', 'disabled', 'readonly', 'enctype', 'src', 'alt', + 'checked', 'disabled', 'readonly', 'enctype', 'src', 'alt', 'title', 'required', 'placeholder', 'autocomplete', 'min', 'max', 'step' )); |