Can't schedule meeting on Feb 29, 2012 unless you change the month to March and then back to Feb.
In meetme_control.php remove line 437 that looks like this for ($i=1; $i<= $days[$tmp-1] ; $i++) {
and add these lines- if ( ($tmp == 2) && (date('L', $starttime)) ) $leap = 1; else $leap = 0; for ($i=1; $i<= ($days[$tmp-1] + $leap); $i++) {
In meetme_control.php remove line 437 that looks like this
for ($i=1; $i<= $days[$tmp-1] ; $i++) {
and add these lines-
if ( ($tmp == 2) && (date('L', $starttime)) )
$leap = 1;
else
$leap = 0;
for ($i=1; $i<= ($days[$tmp-1] + $leap); $i++) {