Skip to content
Snippets Groups Projects
Commit f0f77aaf authored by Robin Appelman's avatar Robin Appelman
Browse files

fix problem when creating users with a non-empty userid cache

parent 5f53165e
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ class OC_USER {
* @param boolean $noCache If false the cache is used to find the ID
*/
public static function getUserId($username, $noCache=false) {
return self::$_backend->getUserId($username, $noCache=false);
return self::$_backend->getUserId($username, $noCache);
}
/**
......@@ -144,7 +144,7 @@ class OC_USER {
* @param boolean $noCache If false the cache is used to find the ID
*/
public static function getGroupId($groupName, $noCache=false) {
return self::$_backend->getGroupId($groupName, $noCache=false);
return self::$_backend->getGroupId($groupName, $noCache);
}
/**
......@@ -154,7 +154,7 @@ class OC_USER {
* @param boolean $noCache If false the cache is used to find the name of the group
*/
public static function getGroupName($groupId, $noCache=false) {
return self::$_backend->getGroupName($groupId, $noCache=false);
return self::$_backend->getGroupName($groupId, $noCache);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment