From: <tim...@us...> - 2010-09-23 18:28:23
|
Revision: 3765 http://web-erp.svn.sourceforge.net/web-erp/?rev=3765&view=rev Author: tim_schofield Date: 2010-09-23 18:28:17 +0000 (Thu, 23 Sep 2010) Log Message: ----------- Fix deprecated use of assigning by reference Modified Paths: -------------- trunk/SalesGraph.php trunk/doc/Change.log.html Modified: trunk/SalesGraph.php =================================================================== --- trunk/SalesGraph.php 2010-09-23 18:21:55 UTC (rev 3764) +++ trunk/SalesGraph.php 2010-09-23 18:28:17 UTC (rev 3765) @@ -181,7 +181,7 @@ include('includes/footer.inc'); } else { - $graph =& new PHPlot(950,450); + $graph = new PHPlot(950,450); $SelectClause =''; $WhereClause =''; $GraphTitle =''; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-09-23 18:21:55 UTC (rev 3764) +++ trunk/doc/Change.log.html 2010-09-23 18:28:17 UTC (rev 3765) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>23/09/10 Tim: SalesGraph.php - Fix deprecated use of assigning by reference</p> <p>23/09/10 Tim: SalesGLPostings.php - SQL quoting corrections and layout changes and improvements</p> <p>23/09/10 Tim: SalesCategories.php - SQL quoting corrections and layout changes and improvements</p> <p>23/09/10 Tim: SalesAnalRepts.php - SQL quoting corrections and layout changes and improvements</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |