From 672791e22e1de68e278e2f0d5c6d7331d5994ecb Mon Sep 17 00:00:00 2001
From: Arun Persaud
Date: Fri, 14 Dec 2007 15:33:49 +0100
Subject: [PATCH] BUGFIX: wrong SQL query for min and max time of games
the wrong time was shown for the minimum game
---
stats.php | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
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);
--
2.34.1