-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create admin setting for group name #6
Comments
Currently the code distinguishes between get_course_acl_group_name, which is "Moodle_course_" . $courseid, and get_course_acl_group_identifier, which is "moodle_course_" . $courseid. |
We identified the responsible code in Opencast: |
Additionally there seems to be a restriction of group name length to 128 Byte. I would suggest to add a hint to the admin setting, that all characters exceeding this length, will be cut. The admin has to make sure that distinguishing characters, like courseid, will not be target of these cuts! |
We definitely need to test special characters as ä, ö, ü and ß here, because they might occur in course names. The above code is Java. In Java \W matches everything, which is not in [a-zA-Z_0-9]. |
The text was updated successfully, but these errors were encountered: