From: <afc...@us...> - 2017-10-15 22:23:51
|
Revision: 7854 http://sourceforge.net/p/web-erp/reponame/7854 Author: afcouling Date: 2017-10-15 22:23:49 +0000 (Sun, 15 Oct 2017) Log Message: ----------- Fixed expense deletion dialogue box in PcClaimExpensesFromTab.php. Modified Paths: -------------- trunk/PcClaimExpensesFromTab.php trunk/doc/Change.log Modified: trunk/PcClaimExpensesFromTab.php =================================================================== --- trunk/PcClaimExpensesFromTab.php 2017-10-15 22:17:04 UTC (rev 7853) +++ trunk/PcClaimExpensesFromTab.php 2017-10-15 22:23:49 UTC (rev 7854) @@ -330,7 +330,7 @@ <td>', $MyRow['receipt'], '</td> <td>', $AuthorisedDate, '</td> <td><a href="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedIndex=', $MyRow['counterindex'], '&SelectedTabs=' . $SelectedTabs . '&Days=' . $Days . '&edit=yes">' . _('Edit') . '</a></td> - <td><a href="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedIndex=', $MyRow['counterindex'], '&SelectedTabs=' . $SelectedTabs . '&Days=' . $Days . '&Delete=yes" onclick=\'return confirm("' . _('Are you sure you wish to delete this code and the expenses it may have set up?') . '", \'Confirm Delete\', this);\'>' . _('Delete') . '</a></td> + <td><a href="', htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . '?SelectedIndex=', $MyRow['counterindex'], '&SelectedTabs=' . $SelectedTabs . '&Days=' . $Days . '&Delete=yes" onclick=\'return confirm("' . _('Are you sure you wish to delete this code and the expenses it may have set up?') . '");\'>' . _('Delete') . '</a></td> </tr>'; } else { echo '<td>', ConvertSQLDate($MyRow['date']), '</td> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-10-15 22:17:04 UTC (rev 7853) +++ trunk/doc/Change.log 2017-10-15 22:23:49 UTC (rev 7854) @@ -1,4 +1,5 @@ webERP Change Log +15/10/17 Andy Couling: Fixed expense deletion dialogue box in PcClaimExpensesFromTab.php. 15/10/17 Andy Couling: Missing $Id comments added to Petty Cash scripts. 17/10/12 Exson: Fixed the bug that Narrative information will loss when add or remove controlled items lot no in StockAdjustments.php. 17/10/11 RChacon: If it is set the $_SESSION['ShowPageHelp'] parameter AND it is FALSE, hides the page help text (simplifies code using css |