From 230e77e712f88b849fd53826d89ca99175f1cf22 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sun, 6 Apr 2008 04:02:21 +0000 Subject: [PATCH] Merged revisions 47501 via svnmerge from svn://svn.silverstripe.com/silverstripe/modules/sapphire/branches/2.2.0-mesq ........ r47501 | ischommer | 2007-12-22 17:26:09 +1300 (Sat, 22 Dec 2007) | 1 line fixed getTabIndex() typo ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@52189 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/TextField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/TextField.php b/forms/TextField.php index 889ad4d3f..fcd6bdb08 100755 --- a/forms/TextField.php +++ b/forms/TextField.php @@ -28,7 +28,7 @@ class TextField extends FormField { 'id' => $this->id(), 'name' => $this->attrName(), 'value' => $this->attrValue(), - 'tabindex' => $this->getTabIndexHTML(), + 'tabindex' => $this->getTabIndex(), 'maxlength' => ($this->maxLength) ? $this->maxLength : null, 'size' => ($this->maxLength) ? min( $this->maxLength, 30 ) : 30 );