diff --git a/workflow/engine/classes/XmlForm_Field_CheckBoxTable.php b/workflow/engine/classes/XmlForm_Field_CheckBoxTable.php
index 49078702f..efe824f42 100644
--- a/workflow/engine/classes/XmlForm_Field_CheckBoxTable.php
+++ b/workflow/engine/classes/XmlForm_Field_CheckBoxTable.php
@@ -1,36 +1,10 @@
.
- *
- * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
- * Coral Gables, FL, 33134, USA, or email info@colosa.com.
- *
- * @package workflow.engine.classes
- **/
-
-
/**
* Class XmlForm_Field_CheckBoxTable
- */class XmlForm_Field_CheckBoxTable extends XmlForm_Field_Checkbox
+ *
+ */
+class XmlForm_Field_CheckBoxTable extends XmlForm_Field_Checkbox
{
/**
@@ -42,11 +16,10 @@
* @param eter string owner
* @return string
*/
- public function render ($value = null, $owner = null)
+ public function render($value = null, $owner = null)
{
- //$optionName = $owner->values['USR_UID'];
$optionName = $value;
- $onclick = (($this->onclick) ? ' onclick="' . G::replaceDataField( $this->onclick, $owner->values ) . '" ' : '');
+ $onclick = (($this->onclick) ? ' onclick="' . G::replaceDataField($this->onclick, $owner->values) . '" ' : '');
$html = ' ';
return $html;
}