From: <ex...@us...> - 2015-03-07 13:49:20
|
Revision: 7198 http://sourceforge.net/p/web-erp/reponame/7198 Author: exsonqu Date: 2015-03-07 13:49:08 +0000 (Sat, 07 Mar 2015) Log Message: ----------- 07/03/15 Exson: Fixed undefine index InputError noise in SupplierInvoice.php. Modified Paths: -------------- trunk/SupplierInvoice.php Modified: trunk/SupplierInvoice.php =================================================================== --- trunk/SupplierInvoice.php 2015-03-07 11:07:11 UTC (rev 7197) +++ trunk/SupplierInvoice.php 2015-03-07 13:49:08 UTC (rev 7198) @@ -1896,7 +1896,7 @@ } /*end of process invoice */ -if($InputError==true){ //add a link to return if users make input errors. +if(isset($InputError) AND $InputError==true){ //add a link to return if users make input errors. echo '<div class="centre"><a href="'.$RootPath.'/SupplierInvoice.php" >' . _('Back to Invoice Entry') . '</a></div>'; } //end of return link for input errors |