Skip to content

Commit

Permalink
Merge branch 'hotfix-10.8.19' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Jul 5, 2017
2 parents 0837f93 + 46d18da commit 818010d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/views/formcontrols/textInput/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
</cfscript>

<cfoutput>
<input type="text" id="#inputId#" placeholder="#placeholder#" name="#inputName#" value="#value#" class="#inputClass# form-control" tabindex="#getNextTabIndex()#"<cfif Len( maxlength )> maxlength="#maxlength#"</cfif>>
<input type="text" id="#inputId#" placeholder="#placeholder#" name="#inputName#" value="#value#" class="#inputClass# form-control" tabindex="#getNextTabIndex()#"<cfif isNumeric( maxlength ) and maxlength gt 0> maxlength="#maxlength#"</cfif>>
</cfoutput>

0 comments on commit 818010d

Please sign in to comment.