lib/private/User,apps/user_ldap/lib/User: always pass old value to User::triggerChange

pull/14967/head
Leon Klingele 7 years ago committed by Morris Jobke
parent ccabc63a09
commit 3eb0d4f1a4
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
  1. 3
      lib/private/User/User.php

@ -138,11 +138,12 @@ class User implements IUser {
*/
public function setDisplayName($displayName) {
$displayName = trim($displayName);
$oldDisplayName = $this->getDisplayName();
if ($this->backend->implementsActions(Backend::SET_DISPLAYNAME) && !empty($displayName)) {
$result = $this->backend->setDisplayName($this->uid, $displayName);
if ($result) {
$this->displayName = $displayName;
$this->triggerChange('displayName', $displayName);
$this->triggerChange('displayName', $displayName, $oldDisplayName);
}
return $result !== false;
}

Loading…
Cancel
Save