From 55277c8e5a9a54baed3b1070eafffaa0f6d54c71 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 25 Oct 2012 11:54:27 +0200 Subject: [PATCH] Allow any characters in the groupname Fixes #82 --- lib/group.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/group.php b/lib/group.php index 66892a99b60..a89c6c55e36 100644 --- a/lib/group.php +++ b/lib/group.php @@ -65,15 +65,8 @@ class OC_Group { * * Tries to create a new group. If the group name already exists, false will * be returned. Basic checking of Group name - * - * Allowed characters in the username are: "a-z", "A-Z", "0-9" and "_.@-" */ public static function createGroup( $gid ) { - // Check the name for bad characters - // Allowed are: "a-z", "A-Z", "0-9" and "_.@-" - if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $gid )) { - return false; - } // No empty group names! if( !$gid ) { return false;