From: <ex...@us...> - 2015-03-14 10:00:02
|
Revision: 7227 http://sourceforge.net/p/web-erp/reponame/7227 Author: exsonqu Date: 2015-03-14 09:59:55 +0000 (Sat, 14 Mar 2015) Log Message: ----------- 14/03/15 Exson: Fixed undefined index noise in Credit_Invoice.php. Modified Paths: -------------- trunk/Credit_Invoice.php Modified: trunk/Credit_Invoice.php =================================================================== --- trunk/Credit_Invoice.php 2015-03-13 02:42:53 UTC (rev 7226) +++ trunk/Credit_Invoice.php 2015-03-14 09:59:55 UTC (rev 7227) @@ -1609,6 +1609,9 @@ echo '</select></td>'; } echo '</tr>'; + if(!isset($_POST['CreditText'])){ + $_POST['CreditText'] = ''; + } echo '<tr> <td>' . _('Credit note text') . '</td> <td><textarea name="CreditText" cols="31" rows="5" tabindex="'.$tabindex++.'">' . $_POST['CreditText'] . '</textarea></td> |