X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=include%2Fuser.php;h=a027f40ee18cf3a173ffcb185ce30e66a119555f;hp=8855fc070502bade79e253dd5d6b054502415ee7;hb=b76cddb9313d8a67e5d7e1830503b5775666238f;hpb=d661e260855977d34672388cfa8766de55a73f93 diff --git a/include/user.php b/include/user.php index 8855fc0..a027f40 100644 --- a/include/user.php +++ b/include/user.php @@ -54,8 +54,8 @@ if(myisset("forgot")) "to log into the server. The new password is valid for 24h, so make\n". "sure you reset your password to something new. Your old password will\n". "also still be valid until you set a new one.\n"; - $subject = $EmailName.' Recovery'; - sendmail($email,$subject,$message); + $subject = 'Recovery'; + mymail($myid,$subject,$message); /* we save these in the database */ DB_set_recovery_password($myid,md5($newpw)); @@ -154,7 +154,7 @@ else $Multi = ($r[5]>1) ? "multi" : ""; if($r[4]=='pre') echo " p \n"; - else if ($r[4]=='gameover') + else if (in_array($r[4],array('gameover','cancel-timedout','cancel-nines','cancel-noplay','cancel-trump'))) { echo " "; if($r[5]<2) @@ -165,7 +165,7 @@ else } else echo " P \n"; - if($r[4] != 'gameover') + if($r[4] == 'pre' || $r[4] == 'play') { echo "\n\n "; if($r[3]==$myid || !$r[3]) @@ -190,8 +190,7 @@ else echo "(it's $name's turn)\n"; }; if(time()-strtotime($r[2]) > 60*60*24*30) - echo "Cancel?". - " (clicking here is final and can't be restored)"; + echo "Cancel? "; } } echo "\n\n"; @@ -207,9 +206,14 @@ else echo "

\n"; /* display last 5 users that logged on */ - $names = DB_get_names_of_last_logins(5); echo "

Players last logged in:

\n

\n"; - echo implode(", ",$names).",...\n"; + + $names = DB_get_names_of_last_logins(7); + $emails = DB_get_emails_of_last_logins(7); + for($i=0;$i<7;$i++) + { + echo "\n"; + } echo "

\n"; echo "\n";