From: <tim...@us...> - 2010-04-29 05:55:27
|
Revision: 3433 http://web-erp.svn.sourceforge.net/web-erp/?rev=3433&view=rev Author: tim_schofield Date: 2010-04-29 05:55:20 +0000 (Thu, 29 Apr 2010) Log Message: ----------- Tim Schofield: SelectOrderItems.php : LastCustomer was not being initialised. Modified Paths: -------------- trunk/SelectOrderItems.php trunk/doc/Change.log.html Modified: trunk/SelectOrderItems.php =================================================================== --- trunk/SelectOrderItems.php 2010-04-28 17:36:03 UTC (rev 3432) +++ trunk/SelectOrderItems.php 2010-04-29 05:55:20 UTC (rev 3433) @@ -644,7 +644,7 @@ $j = 1; $k = 0; //row counter to determine background colour - + $LastCustomer=''; while ($myrow=DB_fetch_array($result_CustSelect)) { if ($k==1){ @@ -664,7 +664,7 @@ <input type=hidden name="Select" value="'.$myrow['debtorno'].' - '.$myrow['branchcode'].'"> <td>'.$myrow['contactname'].'</td> <td>'.$myrow['phoneno'].'</td> - <td>.'.$myrow['faxno'].'</td> + <td>'.$myrow['faxno'].'</td> </tr></form>'; $LastCustomer=$myrow['name']; $j++; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-04-28 17:36:03 UTC (rev 3432) +++ trunk/doc/Change.log.html 2010-04-29 05:55:20 UTC (rev 3433) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>29/04/10 Tim Schofield: SelectOrderItems.php : LastCustomer was not being initialised.</p> <p>28/04/10 Tim Schofield: MiscFunctions.php : Fix currency download for when there is no internat connection.</p> <p>28/04/10 Matt Taylor: Z_ImportStocks.php : Prevent importing empty string for pdfappend.</p> <p>23/04/10 Matt Taylor: MiscFunctions.js : Fix IsDate() function for Y/m/d format.</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |