Properly log expiration date removal in audit log

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2021-05-19 10:09:48 +02:00 committed by Lukas Reschke
parent 20093ee8a0
commit 1b66bb7f1e
1 changed files with 20 additions and 9 deletions

View File

@ -295,15 +295,26 @@ class Sharing extends Action {
* @param array $params * @param array $params
*/ */
public function updateExpirationDate(array $params) { public function updateExpirationDate(array $params) {
$this->log( if ($params['date'] === null) {
'The expiration date of the publicly shared %s with ID "%s" has been changed to "%s"', $this->log(
$params, 'The expiration date of the publicly shared %s with ID "%s" has been removed',
[ $params,
'itemType', [
'itemSource', 'itemType',
'date', 'itemSource',
] ]
); );
} else {
$this->log(
'The expiration date of the publicly shared %s with ID "%s" has been changed to "%s"',
$params,
[
'itemType',
'itemSource',
'date',
]
);
}
} }
/** /**