mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 21:58:17 +01:00
Refresh the updated_at timestamp of invitation after resend it (#7232)
This commit is contained in:
parent
df61147fa6
commit
d3e323b7dd
@ -11,6 +11,7 @@ HumHub Changelog
|
||||
- Fix #7222: Fix rendering of checkbox on MacOS and iOS
|
||||
- Fix #7225: Fix module JS config initialisation on AJAX request
|
||||
- Fix #7227: Fix search reindexing after create new content
|
||||
- Fix #7232: Refresh the updated_at timestamp of invitation after resend it
|
||||
|
||||
1.16.2 (September 5, 2024)
|
||||
--------------------------
|
||||
|
@ -227,6 +227,11 @@ class Invite extends ActiveRecord
|
||||
Yii::$app->setLanguage(Yii::$app->user->language);
|
||||
}
|
||||
|
||||
if ($result) {
|
||||
// Refresh the updated_at timestamp
|
||||
$this->save();
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user