File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ Changes:
93
93
More ICS input sanitizing; prevent HTML/XSS injection
94
94
Bug fixes:
95
95
Webcal caching now works like local caching with save_parsed_cals
96
+ Performance improvements with remote calendars; reducing the number
97
+ of file reads/HTTP requests made for each calendar
96
98
Print view missing some events
97
99
Setting time format in preferences page
98
100
Default calendar selections in listbox picker
@@ -104,8 +106,10 @@ Changes:
104
106
Recurring events across multiple versions of PHP; thanks to Len and gueba!
105
107
Better handling of URLs and email addresses in event descriptions
106
108
Navigation forms breaking PHP transparent SID
109
+ Fix strange characters displayed in Locations with % characters
107
110
New features:
108
111
Event information displayed with Nice Titles
112
+ Fixes line breaks and some HTML in event tooltips
109
113
Attendee/organizer parsing and email address hyperlinking
110
114
Better display of tabs/line breaks in calendar events
111
115
Strip "blocked" protocols, added by some mail servers
Original file line number Diff line number Diff line change 63
63
// At this point, all calendars are up-to-date, so we can simply used the pre-parsed data
64
64
$ parse_file = false ;
65
65
$ calendar_name = $ master_array ['calendar_name ' ];
66
- $ calendar_tz = $ master_array ['calendar_tz ' ];
66
+ if (isset ($ master_array ['calendar_tz ' ]))
67
+ $ calendar_tz = $ master_array ['calendar_tz ' ];
67
68
}
68
69
}
69
70
}
94
95
if ($ master_array ['-1 ' ] == 'valid cal file ' ) {
95
96
$ parse_file = false ;
96
97
$ calendar_name = $ master_array ['calendar_name ' ];
97
- $ calendar_tz = $ master_array ['calendar_tz ' ];
98
+ if (isset ($ master_array ['calendar_tz ' ]))
99
+ $ calendar_tz = $ master_array ['calendar_tz ' ];
98
100
}
99
101
}
100
102
}
You can’t perform that action at this time.
0 commit comments