mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
SCORM MDL-23119 allowing extra characters in CMIIdentifier - this is outside the ADL Spec but it seems to be ok to extend this and allow more characters than is specified by ADL
This commit is contained in:
parent
c0b3e4e039
commit
e5905528fa
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ function SCORMapi1_2() {
|
|||
CMIInteger = '^\\d+$';
|
||||
CMISInteger = '^-?([0-9]+)$';
|
||||
CMIDecimal = '^-?([0-9]{0,3})(\.[0-9]{1,2})?$';
|
||||
CMIIdentifier = '^\\w{1,255}$';
|
||||
CMIIdentifier = '^[\\u0021-\\u007E]{0,255}$';
|
||||
CMIFeedback = CMIString256; // This must be redefined
|
||||
CMIIndex = '[._](\\d+).';
|
||||
// Vocabulary Data Type Definition
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue