From c44803e365b9dd45ad091c97e4861465b99b12fb Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 10 Dec 2007 03:05:35 +0000 Subject: [PATCH] - Do something more intelligent when the report query fails, like, print a friendly message with the failed query. --- admin/reports.inc.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/admin/reports.inc.php b/admin/reports.inc.php index 49305434..b26c46ae 100644 --- a/admin/reports.inc.php +++ b/admin/reports.inc.php @@ -575,10 +575,21 @@ foreach($report_stock as $n=>$v) { $q = call_user_func_array($func, array($report, $components)); $q = "SELECT $sel $q $filter_query $group_query ORDER BY $order"; - -// print("$q"); - $r = mysql_query($q); + + if($r == false) { + echo "The report database query has failed. This is + unfortunate but not your fault. Please send the following to + your fair administrator, or visit http://www.sfiab.ca and submit + a bug report so we can get this fixed.
"; + echo "
";
+		echo "Query: [$q]
"; + echo "Error: [".mysql_error()."]
"; + echo "
"; + exit; + } + echo mysql_error(); $ncols = count($report['col']);