Skip to content

Commit

Permalink
MINOR: Fixes for IE<8
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Michell committed Jan 10, 2012
1 parent 3555ef2 commit e2661df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion forms/gridfield/GridField.php
Expand Up @@ -334,7 +334,9 @@ public function FieldHolder() {


$attrs = array( $attrs = array(
'id' => isset($this->id) ? $this->id : null, 'id' => isset($this->id) ? $this->id : null,
'class' => "field CompositeField {$this->extraClass()}" 'class' => "field CompositeField {$this->extraClass()}",
'cellpadding' => '0',
'cellspacing' => '0'
); );
return return
$this->createTag('fieldset', array('id'=>$this->ID(),'class'=>'ss-gridfield'), $this->createTag('fieldset', array('id'=>$this->ID(),'class'=>'ss-gridfield'),
Expand Down

0 comments on commit e2661df

Please sign in to comment.