removal of wrong/double implemented check
Check already implemented in core/settings/ajax/changedisplayname.php
This commit is contained in:
parent
a069171cda
commit
7e70c4ee95
|
@ -115,7 +115,7 @@ class User implements IUser {
|
||||||
*/
|
*/
|
||||||
public function setDisplayName($displayName) {
|
public function setDisplayName($displayName) {
|
||||||
$displayName = trim($displayName);
|
$displayName = trim($displayName);
|
||||||
if ($this->canChangeDisplayName() && !empty($displayName)) {
|
if ($this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME) && !empty($displayName)) {
|
||||||
$this->displayName = $displayName;
|
$this->displayName = $displayName;
|
||||||
$result = $this->backend->setDisplayName($this->uid, $displayName);
|
$result = $this->backend->setDisplayName($this->uid, $displayName);
|
||||||
return $result !== false;
|
return $result !== false;
|
||||||
|
|
Loading…
Reference in New Issue