uuid consists of lowercase letters
parent
3da0de4626
commit
b79a5b61b8
|
@ -2736,8 +2736,8 @@ class H5PContentValidator {
|
|||
$validkeys = array_merge($validkeys, $semantics->extraAttributes);
|
||||
}
|
||||
$this->filterParams($value, $validkeys);
|
||||
if (isset($value->uuid) && ! preg_match('/^\{?[A-Z0-9]{8}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{12}\}?$/', $value->uuid)) {
|
||||
unset($value->uuid);
|
||||
if (isset($value->uuid) && ! preg_match('/^\{?[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}\}?$/', $value->uuid)) {
|
||||
unset($value->uuid);
|
||||
}
|
||||
|
||||
// Find all dependencies for this library
|
||||
|
|
Loading…
Reference in New Issue