@@ -96,7 +96,7 @@ |
||
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | $httpStatus = new HttpStatus(401, '1.0'); |
| 99 | - header('WWW-Authenticate: Basic realm=' . $this->realm); |
|
| 99 | + header('WWW-Authenticate: Basic realm='.$this->realm); |
|
| 100 | 100 | header(sprintf('HTTP/%s', $httpStatus)); |
| 101 | 101 | echo "Forbidden!"; |
| 102 | 102 | return false; |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | if ($context !== null) { |
| 32 | 32 | foreach ($context as $key => $val) { |
| 33 | - $replace['{' . $key . '}'] = $val; |
|
| 33 | + $replace['{'.$key.'}'] = $val; |
|
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | |