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
Bug
the selected value does not work in form_dropdown helper with a multidimensional array as input
Solution to fix it
In this file : /system/Helpers/form_helper.php
between line 320 and 321 add the following code : $optgroupKey = (string) $optgroupKey;
(Exactly as in line 311, so as not to compare an integer with a string)
The text was updated successfully, but these errors were encountered:
gabriel-pnhr
added
the
bug
Verified issues on the current code behavior or pull requests that will fix them
label
Aug 8, 2021
Bug
the selected value does not work in form_dropdown helper with a multidimensional array as input
Solution to fix it
In this file : /system/Helpers/form_helper.php
between line 320 and 321 add the following code :
$optgroupKey = (string) $optgroupKey;
(Exactly as in line 311, so as not to compare an integer with a string)
The text was updated successfully, but these errors were encountered: