Skip to content

Commit

Permalink
BUG Fixed incorrect CSS class on MoneyField holder
Browse files Browse the repository at this point in the history
  • Loading branch information
tractorcow committed Oct 17, 2013
1 parent 559743c commit 702b6c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forms/MoneyField.php
Expand Up @@ -45,8 +45,8 @@ public function __construct($name, $title = null, $value = "") {
*/
public function Field($properties = array()) {
return "<div class=\"fieldgroup\">" .
"<div class=\"fieldgroupField\">" . $this->fieldCurrency->SmallFieldHolder() . "</div>" .
"<div class=\"fieldgroupField\">" . $this->fieldAmount->SmallFieldHolder() . "</div>" .
"<div class=\"fieldgroup-field\">" . $this->fieldCurrency->SmallFieldHolder() . "</div>" .
"<div class=\"fieldgroup-field\">" . $this->fieldAmount->SmallFieldHolder() . "</div>" .
"</div>";
}

Expand Down

0 comments on commit 702b6c9

Please sign in to comment.