1. daniel-j
  2. Bug Report
  3. Friday, July 02 2021, 11:23 PM
Not sure but I updated to PHP 8 on my server and I am getting this error when I try to access Easy Profile from the backend Component Menu.
Error:
An error has occurred.
0 implode(): Argument #2 ($array) must be of type ?array, string given
Attachments (2)
admin Accepted Answer
Admin
Hi,
your screenshots seems referred to Fabrik component, anyway also in Easy Profile I found same issue with php8.

To solve it follow these steps:
- Open file at /administrator/components/com_jsn/views/fields/tmpl/default.php
- At line 355 replace this code:
<input type="hidden" name="original_order_values" value="<?php echo implode($originalOrders, ','); ?>" />
with this
<input type="hidden" name="original_order_values" value="<?php if(is_array($originalOrders) && !empty($originalOrders)) echo implode($originalOrders, ','); ?>" />
  1. more than a month ago
  2. Bug Report
  3. # 1
Hk66 Accepted Answer
Hello,

as i changed line 355, empty cache, i get
0 implode(): Argument #2 ($array) must be of type ?array, string given
back
SORRY
  1. more than a month ago
  2. Bug Report
  3. # 2
Hk66 Accepted Answer
Content Protected
  1. more than a month ago
  2. Bug Report
  3. # 3
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.