From: <tim...@us...> - 2010-07-28 13:32:42
|
Revision: 3678 http://web-erp.svn.sourceforge.net/web-erp/?rev=3678&view=rev Author: tim_schofield Date: 2010-07-28 13:32:33 +0000 (Wed, 28 Jul 2010) Log Message: ----------- Ensure ellipse() method has compatible declaration with ancestor class Modified Paths: -------------- trunk/doc/Change.log.html trunk/includes/class.pdf.php Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-07-28 13:32:15 UTC (rev 3677) +++ trunk/doc/Change.log.html 2010-07-28 13:32:33 UTC (rev 3678) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>28/07/10 Tim: class.pdf.php - Ensure ellipse() method has compatible declaration with ancestor class</p> <p>28/07/10 Tim: class.pdf.php - Ensure line() method has compatible declaration with ancestor class</p> <p>26/07/10 Tim: PDFGrn.php - Sql quoting corrections, bug fixes</p> <p>26/07/10 Tim: PDFDIFOT.php - Sql quoting corrections, bug fixes and layout changes</p> Modified: trunk/includes/class.pdf.php =================================================================== --- trunk/includes/class.pdf.php 2010-07-28 13:32:15 UTC (rev 3677) +++ trunk/includes/class.pdf.php 2010-07-28 13:32:33 UTC (rev 3678) @@ -127,7 +127,7 @@ * nSeg is not allowed to be less than 2, as this will simply draw a line (and will even draw a * pretty crappy shape at 2, as we are approximating with bezier curves. */ - function ellipse($x0,$y0,$r1,$r2=0,$angle=0,$nSeg=8,$astart=0,$afinish=360,$close=1,$fill=0) { + function ellipse($x0,$y0,$r1,$r2=0,$angle=0,$nSeg=8,$astart=0,$afinish=360,$close=1,$fill=0,$fill_color=array(),$nc=8) { if ($r1==0){ return; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |