Comment out php5-specific code since it causes php4 syntax error

This commit is contained in:
Miles Lott 2004-02-20 16:30:19 +00:00
parent fe8df8ad8d
commit 745a6c347b

View File

@ -879,7 +879,8 @@
if(floor(phpversion()) > 4) if(floor(phpversion()) > 4)
{ {
// $b = $a->__clone(); // $b = $a->__clone();
$b = clone $a; // $b = clone $a;
$b = $a;
} }
else else
{ {