kao: that was the first idea that went thruogh my mind but i looked at the install file and there's just one edit to register.php which is
replace
$userid=$DB_site->insert_id();
with
$userid=$DB_site->insert_id();
$DB_site->query("INSERT INTO items_user (userid) VALUES ($userid)");
$DB_site->query("INSERT INTO battle_stats (userid) VALUES ($userid)");
I did that fine.
same thing with store too, one edit, it's all good.
|