From: Michael Date: Wed, 14 Feb 2018 23:13:53 +0000 (+0000) Subject: Issue 4396: WSOD with uimport X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=3e456ddcb811adb4480cf51a8daced58e3324baf;hp=-c;p=friendica.git Issue 4396: WSOD with uimport --- 3e456ddcb811adb4480cf51a8daced58e3324baf diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 051f99926e..801deda0af 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -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')";