Summary | New users can't create events |
Queue | Kronolith |
Queue Version | 2.0.4 |
Type | Bug |
State | Duplicate |
Priority | 2. Medium |
Owners | |
Requester | patrick.timmons (at) polymtl (dot) ca |
Created | 03/02/2006 (7142 days ago) |
Due | |
Updated | 03/02/2006 (7142 days ago) |
Assigned | 03/02/2006 (7142 days ago) |
Resolved | 03/02/2006 (7142 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
there is no way to select the calendar to see them as the calendar
selector pulldown menu is not displayed on the web page.
State ⇒ Duplicate
bug 3538.preferences correctly. kronolith/lib/base.php automatically sets the
display_cals preference if there are no calendars in it.
mysql> select pref_name, pref_value from horde_prefs where pref_uid =
"p999002@pop3.polymtl.ca" and pref_scope = "kronolith" order by
pref_name;
+--------------------------+-------------------------+
| pref_name | pref_value |
+--------------------------+-------------------------+
| confirm_delete | 1 |
| day_hour_end | 48 |
| day_hour_start | 16 |
| defaultview | month |
| default_share | p999002@pop3.polymtl.ca |
| display_cals | a:0:{} |
| display_remote_cals | a:0:{} |
| half | 0 |
| show_fb_legend | 1 |
| show_icons | 1 |
| show_legend | 1 |
| show_shared_side_by_side | 0 |
| time_between_days | 0 |
| week_start_monday | 0 |
+--------------------------+-------------------------+
14 rows in set (0.00 sec)
mysql>
State ⇒ Feedback
preferences correctly. kronolith/lib/base.php automatically sets the
display_cals preference if there are no calendars in it.
New Attachment: prefs-2.0.4.php
template/menu.inc has changed from kronolith 2.0.3 to kronolith 2.0.4.
I can see the calendar selector in 2.0.3 but not in 2.0.4
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ New users can't create events
Queue ⇒ Kronolith
State ⇒ Unconfirmed
find where to select a calendar. If I replace the pref by
'a:1:{i:0;s:23:"p999002@pop3.polymtl.ca";}' it works.
kronolith/config/prefs:
// store the calendars to diplay
$_prefs['display_cals'] = array(
'value' => 'a:0:{}',
'locked' => false,
'shared' => false,
'type' => 'implicit'
);
I believe in version 2.0.3 you could select the calendar.