Closed dbd5 closed 6 years ago
Hi @blacksmoke26 ,
It seems there's a small bug in ConfigParser (line 377)
if ( !count($compAttrs['@sectionsAttrs']) ) { return []; }
I've been able to proceed with the following work around;
if (!isset($compAttrs['@sectionsAttrs']) || !count($compAttrs['@sectionsAttrs']) ) { return []; }
Will merge. Thanks!
Fixed
Hi @blacksmoke26 ,
It seems there's a small bug in ConfigParser (line 377)
if ( !count($compAttrs['@sectionsAttrs']) ) { return []; }
I've been able to proceed with the following work around;
if (!isset($compAttrs['@sectionsAttrs']) || !count($compAttrs['@sectionsAttrs']) ) { return []; }