From: <tim...@us...> - 2011-03-29 13:55:47
|
Revision: 4525 http://web-erp.svn.sourceforge.net/web-erp/?rev=4525&view=rev Author: tim_schofield Date: 2011-03-29 13:55:41 +0000 (Tue, 29 Mar 2011) Log Message: ----------- Fix error where Bank account wasnt being carried through to the preprinted cheque page Modified Paths: -------------- trunk/Payments.php Modified: trunk/Payments.php =================================================================== --- trunk/Payments.php 2011-03-29 09:20:20 UTC (rev 4524) +++ trunk/Payments.php 2011-03-29 13:55:41 UTC (rev 4525) @@ -260,6 +260,7 @@ echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />'; echo _('Has the cheque been printed') . '?<br><br>'; echo '<input type="hidden" name="CommitBatch" value="' . $_POST['CommitBatch'] . '">'; + echo '<input type="hidden" name="BankAccount" value="' . $_POST['BankAccount'] . '">'; echo '<input type="submit" name="ChequePrinted" value="' . _('Yes / Continue') . '"> '; echo '<input type="submit" name="PaymentCancelled" value="' . _('No / Cancel Payment') . '">'; } else { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |