CodeIgniter Forums
form_helper function - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: form_helper function (/showthread.php?tid=66630)



form_helper function - superior - 11-14-2016

Hello,

Recently working to develop my CI 3 application into CI 4, but on the start with the form helper function i'm bumping on a error message.

   

Loaded everything correct (atleast I think so), is this a known bug inside CI 4 or is there something i've done wrong?


Thanks in advance

Kind Regards,
Erik


RE: form_helper function - kilishan - 11-14-2016

I can't see what it's saying is the actual error, but yes, it looks like it should be:

Code:
$getCsrf->globals['before']

with array access, not as an object there.

EDIT: I just pushed up a fix for that.


RE: form_helper function - superior - 11-15-2016

(11-14-2016, 08:54 PM)kilishan Wrote: I can't see what it's saying is the actual error, but yes, it looks like it should be:

Code:
$getCsrf->globals['before']

with array access, not as an object there.

EDIT: I just pushed up a fix for that.

Thank you for the support and update!