mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 01:43:47 +01:00
Change calendar filter 'all' to include 'owner'; typo in get_recurrences()
This commit is contained in:
parent
1230fc99c9
commit
3fa506f24a
@ -338,7 +338,7 @@ class calendar_so
|
|||||||
'cal_user_type' => $type,
|
'cal_user_type' => $type,
|
||||||
'cal_user_id' => $ids,
|
'cal_user_id' => $ids,
|
||||||
));
|
));
|
||||||
if ($type == 'u' && $filter == 'owner')
|
if ($type == 'u' && ($filter == 'owner' || $filter == 'all'))
|
||||||
{
|
{
|
||||||
$cal_table_def = $this->db->get_table_definitions('calendar',$this->cal_table);
|
$cal_table_def = $this->db->get_table_definitions('calendar',$this->cal_table);
|
||||||
$to_or[] = $this->db->expression($cal_table_def,array('cal_owner' => $ids));
|
$to_or[] = $this->db->expression($cal_table_def,array('cal_owner' => $ids));
|
||||||
@ -1381,7 +1381,7 @@ ORDER BY cal_user_type, cal_usre_id
|
|||||||
$participant_status = array();
|
$participant_status = array();
|
||||||
$where = array('cal_id' => $cal_id);
|
$where = array('cal_id' => $cal_id);
|
||||||
if ($start != 0 && $end == 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date >= ' . (int)$start . ')';
|
if ($start != 0 && $end == 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date >= ' . (int)$start . ')';
|
||||||
if ($start == 0 && $end != 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date =< ' . (int)$end . ')';
|
if ($start == 0 && $end != 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date <= ' . (int)$end . ')';
|
||||||
if ($start != 0 && $end != 0)
|
if ($start != 0 && $end != 0)
|
||||||
{
|
{
|
||||||
$where[] = '(cal_recur_date = 0 OR (cal_recur_date >= ' . (int)$start .
|
$where[] = '(cal_recur_date = 0 OR (cal_recur_date >= ' . (int)$start .
|
||||||
@ -1398,7 +1398,7 @@ ORDER BY cal_user_type, cal_usre_id
|
|||||||
'cal_user_id' => $user_id,
|
'cal_user_id' => $user_id,
|
||||||
);
|
);
|
||||||
if ($start != 0 && $end == 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date >= ' . (int)$start . ')';
|
if ($start != 0 && $end == 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date >= ' . (int)$start . ')';
|
||||||
if ($start == 0 && $end != 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date =< ' . (int)$end . ')';
|
if ($start == 0 && $end != 0) $where[] = '(cal_recur_date = 0 OR cal_recur_date <= ' . (int)$end . ')';
|
||||||
if ($start != 0 && $end != 0)
|
if ($start != 0 && $end != 0)
|
||||||
{
|
{
|
||||||
$where[] = '(cal_recur_date = 0 OR (cal_recur_date >= ' . (int)$start .
|
$where[] = '(cal_recur_date = 0 OR (cal_recur_date >= ' . (int)$start .
|
||||||
|
Loading…
Reference in New Issue
Block a user