You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.inc.php
+3-4
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
# 'cookie_uri' => '',
30
30
# 'download_uri' => '',
31
31
# 'allow_webcals' => 'yes',
32
-
'recursive_path' => 'yes',
32
+
# 'recursive_path' => 'yes',
33
33
34
34
/* ** Timezones **
35
35
If timezone is not set, all events show in the local time of the source calendar. This isn't a problem if all your calendars are in the same timezone. If you set a timezone for the server, events in other timezones are shown when they occur at the server's time.
@@ -57,7 +57,6 @@
57
57
# 'show_todos' => 'no',
58
58
# 'show_completed' => 'no',
59
59
'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars.
60
-
# 'allow_admin' => 'yes',
61
60
# 'week_start_day' => 'Monday', // Day of the week your week starts on
62
61
# 'week_length' => '5', // Number of days to display in the week view
63
62
# 'day_start' => '0600', // Start time for day grid
Copy file name to clipboardExpand all lines: default_config.php
+2-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
class Configs{
3
3
privatestatic$instance;
4
4
privatefunction__construct(){
5
-
$this->phpicalendar_version = '2.3rc1.4';
5
+
$this->phpicalendar_version = '2.3rc1.6';
6
6
// Configuration file for PHP iCalendar 2.25rc1
7
7
//
8
8
// To set values, change the text between the single quotes
@@ -33,6 +33,7 @@ private function __construct(){
33
33
$this->cookie_uri = ''; // The HTTP URL to the PHP iCalendar directory, ie. http://www.example.com/phpicalendar -- AUTO SETTING -- Only set if you are having cookie issues.
34
34
$this->download_uri = ''; // The HTTP URL to your calendars directory, ie. http://www.example.com/phpicalendar/calendars -- AUTO SETTING -- Only set if you are having subscribe issues.
35
35
$this->default_path = ''; // The HTTP URL to the PHP iCalendar directory, ie. http://www.example.com/phpicalendar
36
+
$this->cpath = ''; // optional subdirectory
36
37
$this->charset = 'UTF-8'; // Character set your calendar is in, suggested UTF-8, or iso-8859-1 for most languages.
37
38
38
39
// Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase.
0 commit comments