Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
Error message when adding a field 22.04.2014 12:36
Hello,
Whenever I add a new item to my listing I get this error message.
Notice: Undefined variable: field in /volume1/web/joomla/administrator/components/com_listmanager/models/listing.php on line 874
I have looked at the code which is below but I can not work out what to do to correct, any ideas? I can still add items though.
} elseif ($field['type']=='19' && $isNew){ //Autoincrement
Whenever I add a new item to my listing I get this error message.
Notice: Undefined variable: field in /volume1/web/joomla/administrator/components/com_listmanager/models/listing.php on line 874
I have looked at the code which is below but I can not work out what to do to correct, any ideas? I can still add items though.
} elseif ($field['type']=='19' && $isNew){ //Autoincrement
Re: Error message when adding a field 22.04.2014 16:17
Hello,
This is not an error message, is a Notice message. You shouldn´t see this kind of messages on a production site. Adjust error level to Simple or None at System->Global Configuration->Server->Error Reporting.
If you want to solved it in code just change in line 874:
with:
Regards,
Moonsoft Team
www.moonsoft.es
This is not an error message, is a Notice message. You shouldn´t see this kind of messages on a production site. Adjust error level to Simple or None at System->Global Configuration->Server->Error Reporting.
If you want to solved it in code just change in line 874:
} elseif ($field['type']=='19' && $isNew){ //Autoincrement
with:
} elseif ($fld['type']=='19' && $isNew){ //Autoincrement
Regards,
Moonsoft Team
www.moonsoft.es