Use getReader instead of fetchAssoc for CSV parser

https://csv.thephpleague.com/9.0/upgrading/
This commit is contained in:
snipe
2019-05-23 19:09:58 -07:00
parent d1a8955ef9
commit bf93e8cc32
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -579,7 +579,7 @@ class AssetsController extends Controller
//get the first row, usually the CSV header
//$headers = $csv->fetchOne();
$results = $csv->fetchAssoc();
$results = $csv->getRecords();
$item = array();
$status = array();
$status['error'] = array();