It is due to some bug at PHP4
Solution:
open /components/com_odudecard/views/odudecardsend/view.html.php
Replace following code
//If PHP5 use this
$clock=JFactory::getDate()->toFormat('%Y-%m-%d');
//If PHP4 use
//$clock=date("Y-m-d");
with
//If PHP5 use this
//$clock=JFactory::getDate()->toFormat('%Y-%m-%d');
//If PHP4 use
$clock=date("Y-m-d");
© 2009 ODude Network All Rights Reserved.
Add comment