|
From: <tu...@us...> - 2016-12-13 00:30:24
|
Revision: 7705
http://sourceforge.net/p/web-erp/reponame/7705
Author: turbopt
Date: 2016-12-13 00:30:22 +0000 (Tue, 13 Dec 2016)
Log Message:
-----------
Dashboard.php: Correct table closure. When there are no outstanding orders, causes footer artifact.
Modified Paths:
--------------
trunk/Dashboard.php
trunk/doc/Change.log
Modified: trunk/Dashboard.php
===================================================================
--- trunk/Dashboard.php 2016-12-12 15:50:44 UTC (rev 7704)
+++ trunk/Dashboard.php 2016-12-13 00:30:22 UTC (rev 7705)
@@ -684,10 +684,10 @@
echo '<tr>
<td class="number" colspan="7"><b>', _('Total Order(s) Value in'), ' ', $_SESSION['CompanyRecord']['currencydefault'], ' :</b></td>
<td class="number"><b>', locale_number_format($OrdersTotal,$_SESSION['CompanyRecord']['decimalplaces']), '</b></td>
- </tr>
- </tbody></table>';
+ </tr>';
+ } //rows > 0
- } //rows > 0
+ echo '</tbody></table>';
} //OrderSecurity
include('includes/footer.inc');
-?>
+?>
\ No newline at end of file
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2016-12-12 15:50:44 UTC (rev 7704)
+++ trunk/doc/Change.log 2016-12-13 00:30:22 UTC (rev 7705)
@@ -1,5 +1,6 @@
webERP Change Log
+11/12/16 PaulT: Dashboard.php: Correct table closure. When there are no outstanding orders, causes footer artifact.
08/12/16 Exson: Fixed the variable error in stock take pdf header in includes/PDFStockCheckPageHeader.inc. And fixed undefined noise in Payments.php. Reported by shane.
08/12/16 Exson: Fixed noise of undefined variable and string required for function_exists in Dashboard.php. Reported by Shane.
06/12/16 PaulT: SelectProduct.php: Add footer before the script exits when stock categories are not defined.
|