Quantcast
Channel: Dolibarr Forum :: Recent Topics
Viewing all articles
Browse latest Browse all 2984

PHP Error (and Fix) in Resources Module - by: Mel

$
0
0
I'm using PHP v7.2 and got the following error in the Resources module:

Warning: count(): Parameter must be an array or an object that implements Countable in ..../resource/class/html.formresource.class.php on line 103

The following code is my fix:

CHANGE
$num = count($resourcestat->lines);
TO
$num = is_array($resourcestat->lines);

Viewing all articles
Browse latest Browse all 2984

Trending Articles