
Marc Ostroznik - 2008-06-25 07:26:26
hi elac,
in the month substract are a mistake:
you have in line 424
$numofmonths = $monpos % 12;
the variable $monpos are not set in you class
correct are this
$numofmonths = $this->month % 12;
very nice class.
Best regards,
Marc