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
Url is incorrect when the lookUpTable=>alias_field value is longer than 256(Max mysql alias length) characters.
See UrlEncoder.php line 418. $aliasValue = $this->tsfe->csConvObj->substr('utf-8', $row[$configuration['alias_field']], 0, $maxAliasLengthLength);
The first index in $row is only 256 characters long. So $aliasValue is empty string.
Url is incorrect when the lookUpTable=>alias_field value is longer than 256(Max mysql alias length) characters.
See UrlEncoder.php line 418.
$aliasValue = $this->tsfe->csConvObj->substr('utf-8', $row[$configuration['alias_field']], 0, $maxAliasLengthLength);
The first index in
$row
is only 256 characters long. So$aliasValue
is empty string.https://dev.mysql.com/doc/refman/5.7/en/identifiers.html
The text was updated successfully, but these errors were encountered: