@@ -79,14 +79,14 @@ |
||
| 79 | 79 | foreach ( $request_parameter->ListItemDescriptions as $item ) { |
| 80 | 80 | // Make sure to add group. |
| 81 | 81 | if ( ! array_key_exists( $item->GroupName, $groups ) ) { |
| 82 | - $groups[ $item->GroupName ] = array( |
|
| 82 | + $groups[$item->GroupName] = array( |
|
| 83 | 83 | 'name' => $item->GroupName, |
| 84 | 84 | 'options' => array(), |
| 85 | 85 | ); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | // Add issuer to group. |
| 89 | - $groups[ $item->GroupName ]['options'][ $item->Value ] = $item->Description; |
|
| 89 | + $groups[$item->GroupName]['options'][$item->Value] = $item->Description; |
|
| 90 | 90 | } |
| 91 | 91 | } |
| 92 | 92 | } |