
Lionel F. Lebeau - 2016-03-20 16:14:49
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.