i've found a little bug on lava/wapdesire.
when owner DELETE a username
if this user had got some userfun actions along others
users, this actions remain on database..
for exemple if i delete username "mr.x" and he has
smooched 3 times along someone
you see again the link "3" and clicking on it
nothing appears because the username nick has been delated..
but not his numbers of actions.
i think the more simple solution is
to add a code as this on ownerproc.php
in delete user function ($action=="delu"):
$res = mysql_query("DELETE FROM ibwf_usfun WHERE uid='".$who."'");
so you delete also his userfun actions when you need to delate a username..
do you think the code would be right?
when owner DELETE a username
if this user had got some userfun actions along others
users, this actions remain on database..
for exemple if i delete username "mr.x" and he has
smooched 3 times along someone
you see again the link "3" and clicking on it
nothing appears because the username nick has been delated..
but not his numbers of actions.
i think the more simple solution is
to add a code as this on ownerproc.php
in delete user function ($action=="delu"):
$res = mysql_query("DELETE FROM ibwf_usfun WHERE uid='".$who."'");
so you delete also his userfun actions when you need to delate a username..
do you think the code would be right?
Comment