StrictTransportSecurity syntax fix

This commit is contained in:
Mikael Nordfeldth 2015-05-03 22:50:44 +02:00
parent 2b58d6b774
commit 6d72800098
1 changed files with 3 additions and 4 deletions

View File

@ -27,9 +27,7 @@
* @link http://status.net/
*/
if (!defined('STATUSNET') && !defined('LACONICA')) {
exit(1);
}
if (!defined('GNUSOCIAL')) { exit(1); }
class StrictTransportSecurityPlugin extends Plugin
{
@ -45,7 +43,8 @@ class StrictTransportSecurityPlugin extends Plugin
{
$path = common_config('site', 'path');
if(common_config('site', 'ssl') == 'always' && ($path == '/' || ! $path )) {
header('Strict-Transport-Security: max-age=' . $this->max_age . + ($this->includeSubDomains?'; includeSubDomains':''));
header('Strict-Transport-Security: max-age=' . $this->max_age
. ($this->includeSubDomains ? '; includeSubDomains' : ''));
}
}