User tests: Successful: Unsuccessful:
I caught this error when editing a list in Fabrik:
( ! ) Catchable fatal error: Argument 1 passed to Joomla\Utilities\ArrayHelper::getValue() must be of the type array, object given, called in \libraries\joomla\utilities\arrayhelper.php on line 264 and defined in \libraries\vendor\joomla\utilities\src\ArrayHelper.php on line 242
If you pass an object into getValue previous it would work. However the framework typehints against the object being an array (correctly imho) so we need to ensure that we pass in an array
Labels |
Added:
?
|
Status | Pending | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-03-04 12:47:46 |
thanks George - we'd hacked around it in Fabrik by wrapping the JArrayHelper with our own helper, but great to see that the root issue was fixed.
Easy fix, thanks @wilsonge!