From: <tim...@us...> - 2010-01-07 20:14:38
|
Revision: 3282 http://web-erp.svn.sourceforge.net/web-erp/?rev=3282&view=rev Author: tim_schofield Date: 2010-01-07 20:14:28 +0000 (Thu, 07 Jan 2010) Log Message: ----------- Declare $identifier if not already declared before including PO_ReadInOrder.inc Modified Paths: -------------- trunk/GoodsReceived.php trunk/doc/Change.log.html Modified: trunk/GoodsReceived.php =================================================================== --- trunk/GoodsReceived.php 2010-01-07 19:47:45 UTC (rev 3281) +++ trunk/GoodsReceived.php 2010-01-07 20:14:28 UTC (rev 3282) @@ -11,7 +11,9 @@ include('includes/DefineSerialItems.php'); include('includes/session.inc'); include('includes/SQL_CommonFunctions.inc'); - +if (empty($identifier) { + $identifier=''; +} $title = _('Receive Purchase Orders'); include('includes/header.inc'); Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-01-07 19:47:45 UTC (rev 3281) +++ trunk/doc/Change.log.html 2010-01-07 20:14:28 UTC (rev 3282) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p> +<p>07/01/10 Tim: GoodsReceived.php - Declare $identifier if not already declared before including PO_ReadInOrder.inc <p>07/01/10 Tim: silverwolf/default.css - Changes for new menu layout <p>07/01/10 Tim: PrintCustTransPortrait.php - Correct errors preventing invoice from printing <p>07/01/10 Tim: Change to only allow authorised staff to release invoices from hold This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |