From: <afc...@us...> - 2017-09-11 15:50:45
|
Revision: 7833 http://sourceforge.net/p/web-erp/reponame/7833 Author: afcouling Date: 2017-09-11 15:50:42 +0000 (Mon, 11 Sep 2017) Log Message: ----------- Andy Couling: Fixed the onclick delete confirmation box call in ContractBOM.php, was 'MakeConfirm'. Modified Paths: -------------- trunk/ContractBOM.php trunk/doc/Change.log Modified: trunk/ContractBOM.php =================================================================== --- trunk/ContractBOM.php 2017-09-11 14:55:43 UTC (rev 7832) +++ trunk/ContractBOM.php 2017-09-11 15:50:42 UTC (rev 7833) @@ -268,7 +268,7 @@ <td>' . $ContractComponent->UOM . '</td> <td class="number">' . locale_number_format($ContractComponent->ItemCost,$_SESSION['CompanyRecord']['decimalplaces']) . '</td> <td class="number">' . $DisplayLineTotal . '</td> - <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?identifier='.$identifier. '&Delete=' . $ContractComponent->ComponentID . '" onclick="return MakeConfirm(\'' . _('Are you sure you wish to delete this item from the contract BOM?') . ',' . _('Confirm Deletion') . '\');">' . _('Delete') . '</a></td></tr>'; + <td><a href="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?identifier='.$identifier. '&Delete=' . $ContractComponent->ComponentID . '" onclick=\'return confirm("' . _('Are you sure you wish to delete this item from the contract BOM?') . '");\'>' . _('Delete') . '</a></td></tr>'; $TotalCost += $LineTotal; } Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-09-11 14:55:43 UTC (rev 7832) +++ trunk/doc/Change.log 2017-09-11 15:50:42 UTC (rev 7833) @@ -1,5 +1,6 @@ webERP Change Log +11/9/17 Andy Couling: Fixed the onclick delete confirmation box call in ContractBOM.php, was 'MakeConfirm'. 11/9/17 Andy Couling: Code consistency in PO_Items.php. http://www.weberp.org/forum/showthread.php?tid=4355 8/9/17 PaulT: Z_ChangeLocationCode.php: Add missing locationusers table update, reported by Paul Becker in forums. 8/9/17 Phil: Fix portrait invoice email now has narrative of correct invocie number! |