Merge branch 'release/v5.0' into new/intl_domains

This commit is contained in:
Dan Schaper
2020-01-25 17:49:02 -08:00
committed by GitHub
7 changed files with 23 additions and 2 deletions

View File

@@ -209,7 +209,7 @@ if ($_POST['action'] == 'get_groups') {
// Loop over results
$ips = array();
while ($res = $query->fetchArray(SQLITE3_ASSOC)) {
$ips[$res['ip']] = $res['name'];
$ips[$res['ip']] = $res['name'] !== null ? $res['name'] : '';
}
$FTLdb->close();