jensvoid / lorg

Apache Logfile Security Analyzer
GNU General Public License v2.0
208 stars 50 forks source link

Fix php7 fatal errors #13

Closed theodorosploumis closed 5 years ago

theodorosploumis commented 5 years ago

Most errors come from arrays initialized as strings.

// Before
$array = "";
// After
$array = [];