mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 06:08:21 +01:00
Merge branch 'master' into develop
This commit is contained in:
commit
6d34699e78
@ -5,7 +5,8 @@ HumHub Changelog
|
||||
1.11.5 (Unreleased)
|
||||
---------------------
|
||||
|
||||
- Fix #5806: Alignments for People filters with Select2 mode
|
||||
- Fix #5806: Alignments for People filters with Select2 mode
|
||||
- Fix #5813: Fix deprecated null value for hour param in `mktime()`
|
||||
|
||||
|
||||
1.11.4 (July 6, 2022)
|
||||
|
@ -66,7 +66,7 @@
|
||||
"symfony/postmark-mailer": "^5.4",
|
||||
"symfony/sendgrid-mailer": "^5.4",
|
||||
"symfony/sendinblue-mailer": "^5.4",
|
||||
"twig/twig": "^1.0",
|
||||
"twig/twig": "^3.4.1",
|
||||
"web-token/jwt-checker": ">=1.0 <3.0",
|
||||
"web-token/jwt-signature": ">=1.0 <3.0",
|
||||
"web-token/jwt-signature-algorithm-ecdsa": ">=1.0 <3.0",
|
||||
|
@ -164,7 +164,7 @@ class Events extends \yii\base\BaseObject
|
||||
{
|
||||
return Notification::deleteAll(['AND',
|
||||
['seen' => (int)$seen],
|
||||
['<', 'created_at', date('Y-m-d', mktime(null, null, null, date('m') - $months))],
|
||||
['<', 'created_at', date('Y-m-d', mktime(0, 0, 0, date('m') - $months))],
|
||||
]);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user