Skip to content

Commit

Permalink
Add TextBox and BodyBox to Gdn_Form->BodyBox().
Browse files Browse the repository at this point in the history
  • Loading branch information
tburry authored and linc committed Mar 16, 2014
1 parent a0302ad commit da0b391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/class.form.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function BodyBox($Column = 'Body', $Attributes = array()) {
TouchValue('format', $Attributes, $this->GetValue('Format', C('Garden.InputFormatter')));
TouchValue('Wrap', $Attributes, TRUE);
TouchValue('class', $Attributes, '');
$Attributes['class'] .= ' BodyBox';
$Attributes['class'] .= ' TextBox BodyBox';

$this->SetValue('Format', $Attributes['format']);

Expand Down

0 comments on commit da0b391

Please sign in to comment.