From: <al...@us...> - 2008-09-25 14:46:35
|
Revision: 707 http://sciret.svn.sourceforge.net/sciret/?rev=707&view=rev Author: alpeb Date: 2008-09-25 14:46:27 +0000 (Thu, 25 Sep 2008) Log Message: ----------- fixed stupid class_exists() call Modified Paths: -------------- trunk/tcpdf/tcpdf.php Modified: trunk/tcpdf/tcpdf.php =================================================================== --- trunk/tcpdf/tcpdf.php 2008-09-25 14:41:22 UTC (rev 706) +++ trunk/tcpdf/tcpdf.php 2008-09-25 14:46:27 UTC (rev 707) @@ -65,7 +65,7 @@ @version 1.53.0.TC033_PHP4 */ -if(!class_exists('TCPDF')) { +if(!class_exists('TCPDF', false)) { /** * define default PDF document producer */ @@ -4270,4 +4270,4 @@ //============================================================+ // END OF FILE //============================================================+ -?> \ No newline at end of file +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |