aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Cal.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2018-09-23 19:40:52 +0200
committerMario <mario@mariovavti.com>2018-09-23 19:40:52 +0200
commita1d1d5dba7c975e00bcf8c8dfc8e6ccd13f3df90 (patch)
tree7a61f99523e249b66510bd2edb2cf4a6cb67fb43 /Zotlabs/Module/Cal.php
parent781fdaafcd6a8086b76409b0a39d8edbca2e04c9 (diff)
downloadvolse-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/Cal.php')
-rw-r--r--Zotlabs/Module/Cal.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Cal.php b/Zotlabs/Module/Cal.php
index 2962d31fd..70098a2a1 100644
--- a/Zotlabs/Module/Cal.php
+++ b/Zotlabs/Module/Cal.php
@@ -75,7 +75,7 @@ class Cal extends \Zotlabs\Web\Controller {
$sql_extra = permissions_sql($channel['channel_id'],get_observer_hash(),'event');
- $first_day = feature_enabled($channel['channel_id'], 'cal_first_day');
+ $first_day = feature_enabled($channel['channel_id'], 'events_cal_first_day');
$first_day = (($first_day) ? $first_day : 0);
$htpl = get_markup_template('event_head.tpl');