DT
This commit is contained in:
parent
5c8cb89ea9
commit
55a8f1e182
@ -76,29 +76,29 @@ while ($user = $doldb->result->fetch_assoc())
|
||||
$oc_preferences_query_email = "INSERT INTO oc_preferences(userid, appid, configkey, configvalue) VALUES ('" . $user["login"] . "', 'settings', 'email', '" . $user["email"] . "')";
|
||||
echo $account_data . EOL . $oc_account_query . EOL . $oc_users_query .EOL . $oc_group_user_query . EOL . $oc_preferences_query_quota . EOL . $oc_preferences_query_email . EOL;
|
||||
|
||||
if (!$ncdb->query($oc_account_query))
|
||||
if ($ncdb->query($oc_account_query)!==true)
|
||||
{
|
||||
echo "Echec lors de la requete : (" . $ncdb->connect->errno . ") " . $ncdb->connect->error;
|
||||
}
|
||||
if (!$ncdb->query($oc_users_query))
|
||||
if ($ncdb->query($oc_users_query)!==true)
|
||||
{
|
||||
echo "Echec lors de la requete : (" . $ncdb->connect->errno . ") " . $ncdb->connect->error;
|
||||
}
|
||||
if (!$ncdb->query($oc_group_user_query))
|
||||
if ($ncdb->query($oc_group_user_query)!==true)
|
||||
{
|
||||
echo "Echec lors de la requete : (" . $ncdb->connect->errno . ") " . $ncdb->connect->error;
|
||||
}
|
||||
if (!$ncdb->query($oc_preferences_query_quota))
|
||||
if ($ncdb->query($oc_preferences_query_quota)!==true)
|
||||
{
|
||||
echo "Echec lors de la requete : (" . $ncdb->connect->errno . ") " . $ncdb->connect->error;
|
||||
}
|
||||
if (!$ncdb->query($oc_preferences_query_email))
|
||||
if ($ncdb->query($oc_preferences_query_email)!==true)
|
||||
{
|
||||
echo "Echec lors de la requete : (" . $ncdb->connect->errno . ") " . $ncdb->connect->error;
|
||||
}
|
||||
}
|
||||
//$ncdb->result->close();
|
||||
if ($flag > 8) exit;
|
||||
if ($flag > 9) exit;
|
||||
}
|
||||
//$doldb->result->close();
|
||||
?>
|
||||
|
Reference in New Issue
Block a user