You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the utf8_substr($directory, strlen(DIR_IMAGE . 'data/')); used in filemanager controller return string with zero length.
So.. we should overwrite the default length value with null ie. utf8_substr($directory, strlen(DIR_IMAGE . 'data/'), null); or we should remove default value for $length
The text was updated successfully, but these errors were encountered:
When having
$length = 0
inthe
utf8_substr($directory, strlen(DIR_IMAGE . 'data/'));
used in filemanager controller return string with zero length.So.. we should overwrite the default length value with
null
ie.utf8_substr($directory, strlen(DIR_IMAGE . 'data/'), null);
or we should remove default value for$length
The text was updated successfully, but these errors were encountered: