Renaming from .class to .class.php
It has been asked many time to rename the pChart class files from .class to .class.php due to the impossibility from some dev framework to correctly identify that those files are PHP files.
This change isn't a big deal
but it would require that you modify all your scripts to point to the correct files :
Code:
include("class/pData.class");
include("class/pDraw.class");
include("class/pImage.class");
will become :
Code:
include("class/pData.class.php");
include("class/pDraw.class.php");
include("class/pImage.class.php");
Please use the attached poll to provide your feedback on this topic.
Thank you!
JD.