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
When you use a large number of (any) template variables in your projects, there will be problems with generation of unique tv_id in line 193 of migx.class.php.
/generate unique tvid, must be numeric/
/todo: find a better solution/
$field['tv_id'] = $scriptProperties['tv_id'] * 10000000 + $fieldid;
Easy work around: change 10000000 to 10000.
The text was updated successfully, but these errors were encountered:
When you use a large number of (any) template variables in your projects, there will be problems with generation of unique tv_id in line 193 of migx.class.php.
/generate unique tvid, must be numeric/
/todo: find a better solution/
$field['tv_id'] = $scriptProperties['tv_id'] * 10000000 + $fieldid;
Easy work around: change 10000000 to 10000.
The text was updated successfully, but these errors were encountered: