@@ -82,16 +82,16 @@ |
||
| 82 | 82 | $values = $arrayUtils->arrayize($values); |
| 83 | 83 | } elseif (!is_array($values)) { |
| 84 | 84 | throw new \Exception( |
| 85 | - 'Filter Authorize: Attribute values is neither string nor array: ' . var_export($attribute, true) |
|
| 85 | + 'Filter Authorize: Attribute values is neither string nor array: '.var_export($attribute, true) |
|
| 86 | 86 | ); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | foreach ($values as $value) { |
| 90 | 90 | if (!is_string($value)) { |
| 91 | 91 | throw new \Exception( |
| 92 | - 'Filter Authorize: Each value should be a string for attribute: ' . |
|
| 93 | - var_export($attribute, true) . ' value: ' . var_export($value, true) . |
|
| 94 | - ' Config is: ' . var_export($config, true) |
|
| 92 | + 'Filter Authorize: Each value should be a string for attribute: '. |
|
| 93 | + var_export($attribute, true).' value: '.var_export($value, true). |
|
| 94 | + ' Config is: '.var_export($config, true) |
|
| 95 | 95 | ); |
| 96 | 96 | } |
| 97 | 97 | } |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | $t = new Template($this->config, 'authorize:authorize_403.twig'); |
| 68 | 68 | if (isset($state['Source']['auth'])) { |
| 69 | 69 | $t->data['logoutURL'] = Module::getModuleURL( |
| 70 | - 'core/logout/' . urlencode($state['Source']['auth']), |
|
| 70 | + 'core/logout/'.urlencode($state['Source']['auth']), |
|
| 71 | 71 | ); |
| 72 | 72 | } |
| 73 | 73 | if (isset($state['authprocAuthorize_reject_msg'])) { |