Pass new value to triggerChange
it is not used. but pass in the empty string (on delete) and the new file (on create) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
99916a9bda
commit
71fdc43125
|
@ -135,8 +135,9 @@ class Avatar implements IAvatar {
|
|||
}
|
||||
|
||||
$this->remove();
|
||||
$this->folder->newFile('avatar.'.$type)->putContent($data);
|
||||
$this->user->triggerChange('avatar');
|
||||
$file = $this->folder->newFile('avatar.'.$type);
|
||||
$file->putContent($data);
|
||||
$this->user->triggerChange('avatar', $file);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -155,7 +156,7 @@ class Avatar implements IAvatar {
|
|||
$avatar->delete();
|
||||
}
|
||||
}
|
||||
$this->user->triggerChange('avatar');
|
||||
$this->user->triggerChange('avatar', '');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue