From: <ji...@us...> - 2009-01-07 20:20:12
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8467 Modified Files: default_config.php month.php preferences.php Log Message: timeformat serialization needed urlencode/decode? Index: default_config.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/default_config.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** default_config.php 2 Jan 2009 07:20:20 -0000 1.18 --- default_config.php 7 Jan 2009 20:20:03 -0000 1.19 *************** *** 15,19 **** $this->minical_view = 'current'; // Where do the mini-calendars go when clicked? = 'day', 'week', 'month', 'current' $this->default_cal = $this->ALL_CALENDARS_COMBINED; // Exact filename of calendar without .ics. Or set to $this->ALL_CALENDARS_COMBINED to open all calenders combined into one. - #$this->default_cal = 'Other_racing'; // Exact filename of calendar without .ics. Or set to $this->ALL_CALENDARS_COMBINED to open all calenders combined into one. $this->language = 'English'; // Language support - 'English', 'Polish', 'German', 'French', 'Dutch', 'Danish', 'Italian', 'Japanese', 'Norwegian', 'Spanish', 'Swedish', 'Portuguese', 'Catalan', 'Traditional_Chinese', 'Esperanto', 'Korean' $this->week_start_day = 'Sunday'; // Day of the week your week starts on --- 15,18 ---- Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.150 retrieving revision 1.151 diff -C2 -d -r1.150 -r1.151 *** month.php 28 Dec 2008 10:50:57 -0000 1.150 --- month.php 7 Jan 2009 20:20:03 -0000 1.151 *************** *** 86,90 **** 'username' => $username, 'logout_querys' => $logout_querys, ! 'list_jumps' => $list_jumps, 'list_icals' => $list_icals, 'list_icals_pick' => $list_icals_pick, --- 86,90 ---- 'username' => $username, 'logout_querys' => $logout_querys, ! # 'list_jumps' => $list_jumps, 'list_icals' => $list_icals, 'list_icals_pick' => $list_icals_pick, Index: preferences.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** preferences.php 4 Jan 2009 21:58:18 -0000 1.71 --- preferences.php 7 Jan 2009 20:20:03 -0000 1.72 *************** *** 160,164 **** foreach ($timeformat_arr as $i => $s) { $s = date($timeformat_arr[$i], $example_time)."/".date($timeformat_arr[$i], ($example_time + 12*60*60)); ! $timeformat_select .= '<option value="'.$timeformat_arr[$i].'"'; if ($timeformat_arr[$i] == $cookie_timeformat) { $timeformat_select .= ' selected="selected"'; --- 160,164 ---- foreach ($timeformat_arr as $i => $s) { $s = date($timeformat_arr[$i], $example_time)."/".date($timeformat_arr[$i], ($example_time + 12*60*60)); ! $timeformat_select .= '<option value="'.urlencode($timeformat_arr[$i]).'"'; if ($timeformat_arr[$i] == $cookie_timeformat) { $timeformat_select .= ' selected="selected"'; |