From: <tim...@us...> - 2010-02-05 16:31:00
|
Revision: 3338 http://web-erp.svn.sourceforge.net/web-erp/?rev=3338&view=rev Author: tim_schofield Date: 2010-02-05 16:30:42 +0000 (Fri, 05 Feb 2010) Log Message: ----------- If authoriastion limit is blank, then use a zero value Modified Paths: -------------- trunk/PO_AuthorisationLevels.php trunk/doc/Change.log.html Modified: trunk/PO_AuthorisationLevels.php =================================================================== --- trunk/PO_AuthorisationLevels.php 2010-02-03 17:09:09 UTC (rev 3337) +++ trunk/PO_AuthorisationLevels.php 2010-02-05 16:30:42 UTC (rev 3338) @@ -26,6 +26,9 @@ } else { $offhold=1; } + if ($_POST['authlevel']=='') { + $_POST['authlevel']=0; + } $sql='SELECT COUNT(*) FROM purchorderauth WHERE userid="'.$_POST['userid'].'" Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-02-03 17:09:09 UTC (rev 3337) +++ trunk/doc/Change.log.html 2010-02-05 16:30:42 UTC (rev 3338) @@ -1,6 +1,7 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> -<p>03/02/10 Tim: Payments.php - Correctly show escaped characters in narrative while item hasn't been posted'</p> +<p>05/02/10 Tim: PO_AuthorisationLevels.php - If authoriastion limit is blank, then use a zero value</p> +<p>03/02/10 Tim: Payments.php - Correctly show escaped characters in narrative while item hasn't been posted</p> <p>02/02/10 Pak Ricard: BankReconciliation.php - Correction for multi currency bank accounts</p> <p>02/02/10 Chris Franks: BOMInquiry.php - Show the labour and verhead costs for the parent item</p> <p>02/02/10 Harald: api_xml-rpc.php.php - Corrections to descriptions.</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |