Fix Config::get call

This commit is contained in:
Sandro Santilli 2017-04-21 17:36:45 +02:00
parent 24c023eb0e
commit a6c6287288
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ if (isset($_COOKIE["Friendica"])) {
// Renew the cookie
// Expires after 7 days by default,
// can be set via system.auth_cookie_lifetime
$authcookiedays = Config::get('system', 'auth_cookie_lifetime') || 7;
$authcookiedays = Config::get('system', 'auth_cookie_lifetime', 7);
new_cookie($authcookiedays*24*60*60, $r[0]);
// Do the authentification if not done by now