fixes #412, warn visitor if auth key no longer valid

This commit is contained in:
plegall
2016-01-29 12:44:38 +01:00
parent 77888174cf
commit a12425629e
4 changed files with 14 additions and 1 deletions
+1
View File
@@ -1506,6 +1506,7 @@ SELECT
// is the key still valid?
if (strtotime($key['expired_on']) < strtotime($key['dbnow']))
{
$page['auth_key_invalid'] = true;
return false;
}