@@ -22,7 +22,7 @@  | 
                                                    ||
| 22 | 22 | $t->data['logoutURL'] = Module::getModuleURL(  | 
                                                        
| 23 | 23 | 'core/authenticate.php',  | 
                                                        
| 24 | 24 | ['as' => $state['Source']['auth']]  | 
                                                        
| 25 | - ) . "&logout";  | 
                                                        |
| 25 | + )."&logout";  | 
                                                        |
| 26 | 26 | }  | 
                                                        
| 27 | 27 |  if (isset($state['authprocAuthorize_reject_msg'])) { | 
                                                        
| 28 | 28 | $t->data['reject_msg'] = $state['authprocAuthorize_reject_msg'];  | 
                                                        
@@ -81,15 +81,15 @@  | 
                                                    ||
| 81 | 81 | $values = Utils\Arrays::arrayize($values);  | 
                                                        
| 82 | 82 |              } elseif (!is_array($values)) { | 
                                                        
| 83 | 83 | throw new \Exception(  | 
                                                        
| 84 | - 'Filter Authorize: Attribute values is neither string nor array: ' . var_export($attribute, true)  | 
                                                        |
| 84 | + 'Filter Authorize: Attribute values is neither string nor array: '.var_export($attribute, true)  | 
                                                        |
| 85 | 85 | );  | 
                                                        
| 86 | 86 | }  | 
                                                        
| 87 | 87 | |
| 88 | 88 |              foreach ($values as $value) { | 
                                                        
| 89 | 89 |                  if (!is_string($value)) { | 
                                                        
| 90 | 90 | throw new \Exception(  | 
                                                        
| 91 | - 'Filter Authorize: Each value should be a string for attribute: ' . var_export($attribute, true).  | 
                                                        |
| 92 | - ' value: ' . var_export($value, true) . ' Config is: ' . var_export($config, true)  | 
                                                        |
| 91 | + 'Filter Authorize: Each value should be a string for attribute: '.var_export($attribute, true).  | 
                                                        |
| 92 | + ' value: '.var_export($value, true).' Config is: '.var_export($config, true)  | 
                                                        |
| 93 | 93 | );  | 
                                                        
| 94 | 94 | }  | 
                                                        
| 95 | 95 | }  |