Issue 4396: WSOD with uimport

This commit is contained in:
Michael 2018-02-14 23:13:53 +00:00
parent bcd896c604
commit 3e456ddcb8
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class UserImport
unset($arr['id']);
}
self::check_cols($table, $arr);
self::checkCols($table, $arr);
$cols = implode("`,`", array_map('dbesc', array_keys($arr)));
$vals = implode("','", array_map('dbesc', array_values($arr)));
$query = "INSERT INTO `$table` (`$cols`) VALUES ('$vals')";