Closed (fixed)
Project:
Webform
Version:
7.x-3.6
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Nov 2010 at 07:47 UTC
Updated:
9 Mar 2011 at 02:21 UTC
On line 242 of webform/components/grid.inc
$row[] = array('data' => ' ', 'class' => 'checkbox webform-grid-option');
is missing a semicolon after the  
I've attached a patch.
--- modules/webform/components/grid.inc
+++ modules/webform/components/grid.inc
@@ -242,7 +242,7 @@
$row[] = array('data' => '<strong>X</strong>', 'class' => 'checkbox webform-grid-option');
}
else {
- $row[] = array('data' => ' ', 'class' => 'checkbox webform-grid-option');
+ $row[] = array('data' => ' ', 'class' => 'checkbox webform-grid-option');
}
}
$rows[] = $row;
| Comment | File | Size | Author |
|---|---|---|---|
| grid.inc_.patch | 451 bytes | Mac Clemmens |
Comments
Comment #1
quicksketchThanks, obviously a typo.
Comment #2
quicksketchCommitted finally.