From: <dai...@us...> - 2016-11-08 07:59:10
|
Revision: 7664 http://sourceforge.net/p/web-erp/reponame/7664 Author: daintree Date: 2016-11-08 07:59:07 +0000 (Tue, 08 Nov 2016) Log Message: ----------- Harald spotted translated variable which should not be! Modified Paths: -------------- trunk/Dashboard.php Modified: trunk/Dashboard.php =================================================================== --- trunk/Dashboard.php 2016-11-07 03:25:49 UTC (rev 7663) +++ trunk/Dashboard.php 2016-11-08 07:59:07 UTC (rev 7664) @@ -439,7 +439,7 @@ } $DislayTranDate = ConvertSQLDate($DetailTrans['trandate']); $AccumBalance += $DetailTrans['balance']; - if(_($DetailTrans['type']) == 20) {// If Purchase Invoice: + if($DetailTrans['type'] == 20) {// If Purchase Invoice: echo '<td style="text-align:center">', _($DetailTrans['typename']), '</td> <td class="centre">', $DislayTranDate, '</td> <td class="text"><a href="', $RootPath, '/Payments.php?&SupplierID=', $SupplierID, '&Amount=', $DetailTrans['balance'], '&BankTransRef=', $DetailTrans['suppreference'], '">', $DetailTrans['suppreference'], '</a></td> |