From: <tu...@us...> - 2017-12-12 04:30:32
|
Revision: 7877 http://sourceforge.net/p/web-erp/reponame/7877 Author: turbopt Date: 2017-12-12 04:30:30 +0000 (Tue, 12 Dec 2017) Log Message: ----------- PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) Modified Paths: -------------- trunk/doc/Change.log trunk/includes/phplot/phplot.php Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-11 20:57:10 UTC (rev 7876) +++ trunk/doc/Change.log 2017-12-12 04:30:30 UTC (rev 7877) @@ -1,5 +1,6 @@ webERP Change Log +11/12/17 PaulT: PHP 7 constructor compatibility change to phplot.php. (Reported in forums by rjonesbsink) 11/12/17 Paul Becker: (forums) SelectSalesOrder.php: Consistent delivery address and correct a unit conversion issue. 11/12/17 PaulT: PHP 7 constructor compatibility change to htmlMimeMail.php and mimePart.php 6/12/17 RChacon: Order by transaction date and add link to debtors in Dashboard.php script. Modified: trunk/includes/phplot/phplot.php =================================================================== --- trunk/includes/phplot/phplot.php 2017-12-11 20:57:10 UTC (rev 7876) +++ trunk/includes/phplot/phplot.php 2017-12-12 04:30:30 UTC (rev 7877) @@ -274,7 +274,7 @@ * $which_output_file : Filename for output. * $which_input_file : Path to a file to be used as background. */ - function PHPlot($which_width=600, $which_height=400, $which_output_file=NULL, $which_input_file=NULL) + function __construct($which_width=600, $which_height=400, $which_output_file=NULL, $which_input_file=NULL) { $this->SetRGBArray($this->color_array); |