-
This is in regard to event descriptions that contain rich text (HTML). When I click on the event title, the HTML renders fine in the pop-up. However, if I hover over the event, the floating window just displays HTML code. How can this be fixed?
1) What version of PHP iCalendar are you using? 2.31
2) Did you try to run PHP iCalendar before making any changes to the config? YES
3) Where is...
2009-12-12 14:19:19 UTC by jotsbox
-
I downloaded v 2.31 and found the following error on line 382 in functions/ical_parser.php:
$chooseOffset(...) should be chooseOffset(...)
Thanks for maintaining and improving the app.
2009-12-01 00:43:11 UTC by eikosaedra
-
Hello,
I noticed a little detail about phpicalendar's french localization. I (and maybe a lot of french people) never use "12:00" time format. So I think that the default small time format should be "G:i" (not "g:i"). This is file phpicalendar/languages/french.inc.php , line 172.
phpicalendar would be perfect with that.
Thanks.
2009-11-27 17:44:06 UTC by ljanvier
-
Wrote a basic plugin to add LDAP support. Works well with openLDAP should work with AD with a little tweaking. Patch is based off LDAP patch from Projectpier project by 'darkstructures' http://www.projectpier.org/node/1338
I had trouble getting TLS to work, but left it in there.
2009-11-18 23:06:31 UTC by mulroony
-
Events with duration 0 and start at 0:00 are not displayed.
Solution:
Change
if($this_date_tmp == $end_date_tmp && ($end_time == '0000')) continue;
(near Line 325)
to
if($this_date_tmp == $end_date_tmp && ($end_time == '0000') && $length > 0){
continue;
}.
2009-11-12 17:41:20 UTC by cvolhard
-
Version 2.31
In functions/ical_parser.php $recurrence_d and $recurrence_t have to be unset like the other variables. Otherwise all following events will write their $uid into the $recurrence_delete array.
If a single event of a recurrence event changes the start date/time, both events are displayed.
Example:
You have a weekly event on monday at six o clock. If you change on of theses...
2009-11-12 16:50:29 UTC by cvolhard
-
if(strpos($data, "mailto:") === false){
$email = ereg_replace (".*mailto:(.*).*", "\\1", $field);
}
else {
$email = str_replace ("mailto:", "", $data);
}
if(strpos($field, "CN=") === false){
$name = $email;
}
else {
$name = ereg_replace (".*CN=([^;]*).*", "\\1", $field);
}
$attendee[] = array...
2009-10-24 14:44:44 UTC by cvolhard
-
Lightning saves ATTENDEE and ORGANIZER like this:
ORGANIZER;RSVP=TRUE;CN=Name;PARTSTAT=ACCEPTED;ROLE=CHAIR:mailto:
email@provider.de
ATTENDEE;RSVP=TRUE;CN=Name;PARTSTAT=NEEDS-ACTION;ROLE=REQ-PARTICIPANT:
mailto:email@provider.de
Because of this phpicalendar can not parse the name and email
Solution:
modify ical_parser.php
case 'ATTENDEE':
if(strpos($data, "mailto:") ===...
2009-10-24 14:26:56 UTC by cvolhard
-
It would be great if there was a way to make multi-day events spread across multiple days like in Google Calendar.
It already happens with day and week views, but it would be awesome to see it in month view.
2009-09-24 22:13:47 UTC by edsysad
-
Fix:
publish.php (in calendar folder)
change the 1 to a 0 example below:
// toggle logging
define( 'PHPICALENDAR_LOG_PUBLISHING', 1 );
to:
// toggle logging
define( 'PHPICALENDAR_LOG_PUBLISHING', 0 );.
2009-08-14 09:37:44 UTC by wmknowlden