There are errors if i use freichat on PHP 7.2.4 with PHP Fusion
- admin_base.php line 75:
$dim = count($name);
should be:
$dim = is_array($name) ? count($name) : 1;
- i become this error:
Warning: in_array() expects parameter 2 to be array, null given in ... administrator/admin_files/home/client_side/index.php on line 42
if i disable chatrooms in ACP, i have a blue field on bottom of the site. (I think it was a problem on freichat 10 too)
I use freichat with the PHP Fusion driver, but i can not change the setting for "Show link to user's profile". That will not save.
There are errors if i use freichat on PHP 7.2.4 with PHP Fusion
1. admin_base.php line 75:
````
$dim = count($name);
````
should be:
````
$dim = is_array($name) ? count($name) : 1;
````
2. i become this error:
````
Warning: in_array() expects parameter 2 to be array, null given in ... administrator/admin_files/home/client_side/index.php on line 42
````
3. if i disable chatrooms in ACP, i have a blue field on bottom of the site. (I think it was a problem on freichat 10 too)
4. I use freichat with the PHP Fusion driver, but i can not change the setting for "Show link to user's profile". That will not save.
edited Apr 9 '18 at 6:22 am