@@ -29,7 +29,7 @@  | 
                                                    ||
| 29 | 29 | $stringTrim = new FilterAdapterZf(new StringTrim());  | 
                                                        
| 30 | 30 | $stripTags = new FilterAdapterZf(new StripTags());  | 
                                                        
| 31 | 31 | $this->addFilter($stringTrim)  | 
                                                        
| 32 | - ->addFilter($stripTags);  | 
                                                        |
| 32 | + ->addFilter($stripTags);  | 
                                                        |
| 33 | 33 | }  | 
                                                        
| 34 | 34 | |
| 35 | 35 | /**  | 
                                                        
@@ -103,7 +103,7 @@  | 
                                                    ||
| 103 | 103 | |
| 104 | 104 |          $radio = $this->getDom()->createElement('input'); | 
                                                        
| 105 | 105 |          $radio->setAttribute('type', 'checkbox'); | 
                                                        
| 106 | - $fieldName = $this->isMultiCheckbox ? $field->getName() . '[]' : $field->getName();  | 
                                                        |
| 106 | + $fieldName = $this->isMultiCheckbox ? $field->getName().'[]' : $field->getName();  | 
                                                        |
| 107 | 107 |          $radio->setAttribute('name', $fieldName); | 
                                                        
| 108 | 108 |          $radio->setAttribute('value', $value); | 
                                                        
| 109 | 109 | $text = $this->createText($labelText);  |