Merge branch 'main' into fix-client-certificate-login
This commit is contained in:
commit
44987425dc
1 changed files with 6 additions and 0 deletions
|
@ -39,6 +39,12 @@
|
||||||
(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 172800";
|
(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 172800";
|
||||||
mysql_query($query);
|
mysql_query($query);
|
||||||
|
|
||||||
|
// removes entries that where introduced due to missing/wrong default value
|
||||||
|
// in MariaDB strict mode, see https://bugs.cacert.org/view.php?id=1543
|
||||||
|
$query = "delete from `email` where `memid`=0 and
|
||||||
|
(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 172800";
|
||||||
|
mysql_query($query);
|
||||||
|
|
||||||
$query = "delete from `disputedomain` where `hash`!='' and
|
$query = "delete from `disputedomain` where `hash`!='' and
|
||||||
(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 21600";
|
(UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(`created`)) >= 21600";
|
||||||
mysql_query($query);
|
mysql_query($query);
|
||||||
|
|
Loading…
Reference in a new issue