X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=stats.php;h=ba32a9269077c0954b202b96e87becfe8592c65c;hp=5bbca267f136609cbff7d288feca10926cbe2b4b;hb=672791e22e1de68e278e2f0d5c6d7331d5994ecb;hpb=3db5eb27624bf78817a69da847af22f3986f20fe diff --git a/stats.php b/stats.php index 5bbca26..ba32a92 100644 --- a/stats.php +++ b/stats.php @@ -134,8 +134,10 @@ else if( isset($_SESSION["name"]) ) echo "

\n"; /* longest and shortest game */ - $r=mysql_query("SELECT MIN(timediff(mod_date,create_date)),session,id". - " FROM Game WHERE status='gameover' GROUP BY status"); + $r=mysql_query("SELECT timediff(mod_date,create_date) ,session,id". + " FROM Game WHERE status='gameover'". + " ORDER BY time_to_sec(timediff(mod_date,create_date)) ASC LIMIT 1"); + if($r) { $short= mysql_fetch_array($r,MYSQL_NUM); @@ -143,8 +145,9 @@ else if( isset($_SESSION["name"]) ) echo "

The shortest game took only ".$short[0]." hours and was played by ".join(", ",$names).".
\n"; } - $r=mysql_query("SELECT MAX(datediff(mod_date,create_date)),session". - " FROM Game where status='gameover' GROUP BY status"); + $r=mysql_query("SELECT datediff(mod_date,create_date) ,session,id". + " FROM Game WHERE status='gameover'". + " ORDER BY time_to_sec(timediff(mod_date,create_date)) DESC LIMIT 1"); if($r) { $long= mysql_fetch_array($r,MYSQL_NUM);