Fixed missing equal sign.
parent
2d43942c48
commit
46183a3a2e
|
@ -2487,7 +2487,7 @@ class H5PCore {
|
||||||
|
|
||||||
// Prevent to long slug
|
// Prevent to long slug
|
||||||
if (strlen($input) > 91) {
|
if (strlen($input) > 91) {
|
||||||
$inputsubstr($input, 0, 92);
|
$input = substr($input, 0, 92);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prevent empty slug
|
// Prevent empty slug
|
||||||
|
|
Loading…
Reference in New Issue