1
0
This commit is contained in:
Daniel Tartavel 2019-09-02 22:47:12 +02:00
parent 8f35770764
commit e0ab3c0e64

View File

@ -51,7 +51,7 @@ while ($user = $doldb->result->fetch_assoc())
$oc_group_user_query = "INSERT INTO oc_group_user(uid, gid) VALUES ('" . $user["login"] . "','" . $gid . "')";
$oc_preferences_query_quota = "INSERT INTO oc_preferences('userid', 'appid', 'configkey', 'configvalue') VALUES('" . $user["login"] . "', ''files', 'quota', '10 GB')";
$oc_preferences_query_quota = "INSERT INTO oc_preferences('userid', 'appid', 'configkey', 'configvalue') VALUES('" . $user["login"] . "', 'files', 'quota', '10 GB')";
$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;