diff options
author | Mario <mario@mariovavti.com> | 2018-09-23 19:40:52 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-09-23 19:40:52 +0200 |
commit | a1d1d5dba7c975e00bcf8c8dfc8e6ccd13f3df90 (patch) | |
tree | 7a61f99523e249b66510bd2edb2cf4a6cb67fb43 /Zotlabs/Module/Events.php | |
parent | 781fdaafcd6a8086b76409b0a39d8edbca2e04c9 (diff) | |
download | volse-hubzilla-a1d1d5dba7c975e00bcf8c8dfc8e6ccd13f3df90.tar.gz volse-hubzilla-a1d1d5dba7c975e00bcf8c8dfc8e6ccd13f3df90.tar.bz2 volse-hubzilla-a1d1d5dba7c975e00bcf8c8dfc8e6ccd13f3df90.zip |
use different settings for cal_first_day in events and cdav/calendar. This is a tradeoff. It would be better to have one setting for both but if we want to preserve the *all settings* view, this would break its functionality
Diffstat (limited to 'Zotlabs/Module/Events.php')
-rw-r--r-- | Zotlabs/Module/Events.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Events.php b/Zotlabs/Module/Events.php index b63921ce3..7e5204e62 100644 --- a/Zotlabs/Module/Events.php +++ b/Zotlabs/Module/Events.php @@ -290,7 +290,7 @@ class Events extends \Zotlabs\Web\Controller { ); } - $first_day = feature_enabled(local_channel(), 'cal_first_day'); + $first_day = feature_enabled(local_channel(), 'events_cal_first_day'); $first_day = (($first_day) ? $first_day : 0); $htpl = get_markup_template('event_head.tpl'); |