Actions
Bug #2383
closedDays diff function algorithm broken around year switch
Description
cbgroupjive.class.php line 1025:
$current = getdate( $_CB_framework->now() );
$invited = getdate( strtotime( $this->invited ) );
$diff[$this->id] = ( $invited['yday'] - $current['yday'] );
This won't work at the begin or end of the year when e.g. invited = 365 and current = 1.
Actions