Undefined index error after changing field name in 'User Accounts'
3 posts by 2 authors in: Forums > CMS Builder
Last Post: February 2, 2009 (RSS)
By markr - January 31, 2009
Too clever by half...
While editing User Accounts I changed fullname to first_name and added last_name. Now I get the following "undefined index error" whenever I attempt to add a new user. Do I need to delete the index?
Notice: Undefined index: fullname in /home/mysite/public_html/cmsAdmin/lib/menus/default/edit_functions.php on line 109
Notice: Undefined index: fullname in /home/mysite/public_html/cmsAdmin/lib/menus/default/edit_functions.php on line 110
While editing User Accounts I changed fullname to first_name and added last_name. Now I get the following "undefined index error" whenever I attempt to add a new user. Do I need to delete the index?
Notice: Undefined index: fullname in /home/mysite/public_html/cmsAdmin/lib/menus/default/edit_functions.php on line 109
Notice: Undefined index: fullname in /home/mysite/public_html/cmsAdmin/lib/menus/default/edit_functions.php on line 110
Re: [markr] Undefined index error after changing field name in 'User Accounts'
By Dave - February 2, 2009
Hi markr,
Yes, that field is used internally by the program to display the users name. So if you want to add fields for first and last you'll want to keep that one and update it with the full name as well.
Hope that helps!
Yes, that field is used internally by the program to display the users name. So if you want to add fields for first and last you'll want to keep that one and update it with the full name as well.
Hope that helps!
Dave Edis - Senior Developer
interactivetools.com
interactivetools.com
Re: [Dave] Undefined index error after changing field name in 'User Accounts'
By markr - February 2, 2009
I put it all back to default and it work fine...thanks.