If you Use e-Commerce please consider helping by donating to or sponsoring development. You can make a donation of a one off amount as big or as small as you want, Or alternatively you can sponsor development by paying $US5.00/mth.
drupal_clone($object)drupal-6/includes/common.inc, line 1676
Provide a substitute clone() function for PHP4.
<?php function drupal_clone($object) { return version_compare(phpversion(), '5.0') < 0 ? $object : clone($object); } ?>