Hi,
Thanks for reporting the bug , we were testing in PHP 5.4 environment so we did not notice it.
PHP 5.4 uses a new syntax for defining arrays which is not supported in older versions.
It will be fixed in our next release (by using the standard syntax) .
For a quick fix, you can do the following :
Go to codoforum/admin/modules/users.php
On line 10,
replace
$filter_array = [];
with
$filter_array = array();
Hi,
Thanks for reporting the bug , we were testing in PHP 5.4 environment so we did not notice it.
PHP 5.4 uses a new syntax for defining arrays which is not supported in older versions.
It will be fixed in our next release (by using the standard syntax) .
For a quick fix, you can do the following :
Go to codoforum/admin/modules/users.php
On line 10,
replace
````
$filter_array = [];
````
with
````
$filter_array = array();
````
Necessity is the mother of all inventions!