1
0
This commit is contained in:
Daniel Tartavel 2019-09-03 01:27:43 +02:00
parent 3ba639ff01
commit 5c3fb39f83

View File

@ -61,7 +61,7 @@ while ($user = $doldb->result->fetch_assoc())
if (($account_data = json_encode($data)) == false )
{
echo json_last_error();
exit 0;
exit (0);
}
$oc_account_query = "INSERT INTO oc_accounts (uid, data) VALUES ('" . $user["login"] . "','" . $account_data ."')";