In Function LoadCSVList($file, &$list)
I had to change
if(!($csv = fopen($file, "r")))
to
if(!($csv = fopen(__DIR__.'/'.$file, "r")))
because I put the folder in an other folder.
I didn't have this problem with previous versions.
Manuel Lemos - 2016-03-20 20:24:15 - In reply to message 1 from Lionel F. Lebeau
That function is called with the paths that you specify the the class variables for the CSV files to load. If you set those variables with the correct path that you want, it will work as you intend.