[Netoffice-cvs-2x] netoffice-2.x/reports resultsreport.php,1.8,1.9
PXell - Online project management.
Brought to you by:
trilexcom
From: Scott M. <ma...@us...> - 2005-06-01 00:47:06
|
Update of /cvsroot/netoffice/netoffice-2.x/reports In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27727/reports Modified Files: resultsreport.php Log Message: fixed report result table display, thanks to alpha for reporting it Index: resultsreport.php =================================================================== RCS file: /cvsroot/netoffice/netoffice-2.x/reports/resultsreport.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** resultsreport.php 23 Dec 2004 16:39:19 -0000 1.8 --- resultsreport.php 1 Jun 2005 00:46:44 -0000 1.9 *************** *** 244,254 **** if ($comptListTasks == "0") { $block1->contentRow("", "0 " . $strings["matches"] . "<br>" . $strings["no_results_report"]); ! } if ($comptListTasks == "1") { $block1->contentRow("", "1 " . $strings["match"]); ! } if ($comptListTasks > "1") { $block1->contentRow("", $comptListTasks . " " . $strings["matches"]); ! } $block0->closeContent(); --- 244,256 ---- if ($comptListTasks == "0") { $block1->contentRow("", "0 " . $strings["matches"] . "<br>" . $strings["no_results_report"]); ! } ! if ($comptListTasks == "1") { $block1->contentRow("", "1 " . $strings["match"]); ! } ! if ($comptListTasks > "1") { $block1->contentRow("", $comptListTasks . " " . $strings["matches"]); ! } $block0->closeContent(); *************** *** 258,262 **** $block1->heading($strings["report_results"]); - $block1->heading_close(); if ($comptListTasks != "0") { --- 260,263 ---- |