Hey guys,
I found one potential problem, but I'm not sure if it's causing your problems. I'll include the fix in the next release, but if you want to try it now, edit the /global/code/field_validation.php file and on line 274, after this code:
Add the following 2 lines:
if you try it out, let me know if it works.
- Ben
I found one potential problem, but I'm not sure if it's causing your problems. I'll include the fix in the next release, but if you want to try it now, edit the /global/code/field_validation.php file and on line 274, after this code:
PHP Code:
function ft_get_php_field_validation_rules($field_ids)
{
global $g_table_prefix;
Add the following 2 lines:
PHP Code:
function ft_get_php_field_validation_rules($field_ids)
{
global $g_table_prefix;
if (empty($field_ids))
return array();
if you try it out, let me know if it works.
- Ben