From 702b6c94c4199824816accdb54273584cd35b7bf Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Thu, 17 Oct 2013 13:28:27 +1300 Subject: [PATCH] BUG Fixed incorrect CSS class on MoneyField holder --- forms/MoneyField.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forms/MoneyField.php b/forms/MoneyField.php index f63a25d89..129a1b25c 100644 --- a/forms/MoneyField.php +++ b/forms/MoneyField.php @@ -45,8 +45,8 @@ class MoneyField extends FormField { */ public function Field($properties = array()) { return "
" . - "
" . $this->fieldCurrency->SmallFieldHolder() . "
" . - "
" . $this->fieldAmount->SmallFieldHolder() . "
" . + "
" . $this->fieldCurrency->SmallFieldHolder() . "
" . + "
" . $this->fieldAmount->SmallFieldHolder() . "
" . "
"; }