fix for repeating events

This commit is contained in:
skeeter 2000-11-27 03:20:59 +00:00
parent 7393619679
commit f29617cc5c
2 changed files with 2 additions and 1 deletions

View File

@ -255,7 +255,7 @@
} }
} }
$str = "<input type=\"checkbox\" name=\"participants[]\" value=\"".$phpgw_info["user"]["account_id"]."\""; $str = "<input type=\"checkbox\" name=\"participants[]\" value=\"".$phpgw_info["user"]["account_id"]."\"";
if($id && $participate) { if(($id && $participate) || !$id) {
$str .= " checked"; $str .= " checked";
} }
$str .= ">"; $str .= ">";

View File

@ -3,6 +3,7 @@
- Added capability to schedule others and not yourself to calendar. - Added capability to schedule others and not yourself to calendar.
- Fixed d/l'ing of files through filemanager. - Fixed d/l'ing of files through filemanager.
- Enhanced Free/Busy calendar view. - Enhanced Free/Busy calendar view.
- Fix for repeating events not showing in calendar.
[0.9.6] - Fix user permissions where not being checked properly. [0.9.6] - Fix user permissions where not being checked properly.