|
From: <dai...@us...> - 2013-04-18 06:18:35
|
Revision: 5846
http://sourceforge.net/p/web-erp/reponame/5846
Author: daintree
Date: 2013-04-18 06:18:30 +0000 (Thu, 18 Apr 2013)
Log Message:
-----------
Tim: Credit_Invoice.php missing $identifier in link
Modified Paths:
--------------
trunk/Credit_Invoice.php
trunk/doc/Change.log
Modified: trunk/Credit_Invoice.php
===================================================================
--- trunk/Credit_Invoice.php 2013-04-17 10:02:47 UTC (rev 5845)
+++ trunk/Credit_Invoice.php 2013-04-18 06:18:30 UTC (rev 5846)
@@ -405,7 +405,7 @@
echo '<td class="number">' . $DisplayTaxAmount . '</td>
<td class="number">' . $DisplayGrossLineTotal . '</td>
- <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?Delete=' . $LnItm->LineNumber . '" onclick="return confirm(\'' . _('Are you sure you wish to delete this item from the credit?') . '\');">' . _('Delete') . '</a></td>
+ <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?identifier=' . $identifier . '&Delete=' . $LnItm->LineNumber . '" onclick="return confirm(\'' . _('Are you sure you wish to delete this item from the credit?') . '\');">' . _('Delete') . '</a></td>
</tr>';
echo '<tr ' . $RowStarter . '>
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2013-04-17 10:02:47 UTC (rev 5845)
+++ trunk/doc/Change.log 2013-04-18 06:18:30 UTC (rev 5846)
@@ -1,5 +1,6 @@
webERP Change Log
+18/4/13 Tim: Credit_Invoice.php missing $identifier in link causing details of credit note to be lost
16/4/13 Ricard: Audit trail was not being purged if DB Maintenance was turned off and it should be pruned daily.
16/04/13 Thumb: Fixed the bug of Y-m-d date format error in MiscFunctions.js (this date type is missing) which will display wrong date in Work Order.
6/4/13 Rafael: PDFPriceList.php split long description to maximum of 132 characters long
|