From: Sebastien D. <sde...@us...> - 2005-06-10 12:42:36
|
Update of /cvsroot/tslogparser/tslogparser/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21937 Modified Files: index.php Log Message: Fix bug when multiple modules defined Index: index.php =================================================================== RCS file: /cvsroot/tslogparser/tslogparser/admin/index.php,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- index.php 22 Apr 2005 08:47:52 -0000 1.12 +++ index.php 10 Jun 2005 12:41:56 -0000 1.13 @@ -803,8 +803,8 @@ $DATA[$run["ver_module"]]["TS"][$run["ver_name"]]["RUNS"][$run["run_id"]]= array( "run_name"=>$run["run_name"], "run_comments"=>$run["run_comments"]); - $DATA[$release["ver_module"]]["count"] += 1; - $DATA[$release["ver_module"]]["TS"][$run["ver_name"]]["count"] += 1; + $DATA[$run["ver_module"]]["count"] += 1; + $DATA[$run["ver_module"]]["TS"][$run["ver_name"]]["count"] += 1; } //echo "<hr><pre>\n"; |