summaryrefslogtreecommitdiffstats
path: root/lib/user
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-15 12:24:49 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-15 12:24:49 +0100
commit297c50db189faacf13e05335b3d38ddc2ff688c5 (patch)
treeb07b4c7f2466bfefaf46adfa0c7dc18769b33ce0 /lib/user
parent6cee4c43ad63062e81230fe8c0bcfc59b77dc5c9 (diff)
downloadnextcloud-server-297c50db189faacf13e05335b3d38ddc2ff688c5.tar.gz
nextcloud-server-297c50db189faacf13e05335b3d38ddc2ff688c5.zip
changing the bit mask of OC_USER_BACKEND_SET_DISPLAYNAME
Diffstat (limited to 'lib/user')
-rw-r--r--lib/user/backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/user/backend.php b/lib/user/backend.php
index 34de1e50698..60b3cc6c5e4 100644
--- a/lib/user/backend.php
+++ b/lib/user/backend.php
@@ -36,7 +36,7 @@ define('OC_USER_BACKEND_SET_PASSWORD', 0x000010);
define('OC_USER_BACKEND_CHECK_PASSWORD', 0x000100);
define('OC_USER_BACKEND_GET_HOME', 0x001000);
define('OC_USER_BACKEND_GET_DISPLAYNAME', 0x010000);
-define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x010000);
+define('OC_USER_BACKEND_SET_DISPLAYNAME', 0x100000);
/**