@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $form = new FormValidator( |
101 | 101 | 'survey', |
102 | 102 | 'post', |
103 | - api_get_self().'?action='.Security::remove_XSS($_GET['action']).'&survey_id='.$survey_id. '&' . api_get_cidreq() |
|
103 | + api_get_self().'?action='.Security::remove_XSS($_GET['action']).'&survey_id='.$survey_id.'&'.api_get_cidreq() |
|
104 | 104 | ); |
105 | 105 | |
106 | 106 | $form->addElement('header', $tool_name); |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | foreach ($field_list as $key => & $field) { |
217 | 217 | if ($field['visibility'] == 1) { |
218 | 218 | $form->addElement('checkbox', 'profile_'.$key, ' ', ' '.$field['name']); |
219 | - $input_name_list.= 'profile_'.$key.','; |
|
219 | + $input_name_list .= 'profile_'.$key.','; |
|
220 | 220 | } |
221 | 221 | } |
222 | 222 |