mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-08 22:40:23 +01:00
Calendar - fix incorrectly moved preference read
This commit is contained in:
parent
1aa20ae4b0
commit
65437b4bd0
@ -2938,8 +2938,6 @@ class calendar_boupdate extends calendar_bo
|
|||||||
|
|
||||||
$status_reset = false;
|
$status_reset = false;
|
||||||
$sameday = (date('Ymd', $old_event['start']) == date('Ymd', $event['start']));
|
$sameday = (date('Ymd', $old_event['start']) == date('Ymd', $event['start']));
|
||||||
$preferences = new Api\Preferences($uid);
|
|
||||||
$part_prefs = $preferences->read_repository();
|
|
||||||
foreach((array)$event['participants'] as $uid => $status)
|
foreach((array)$event['participants'] as $uid => $status)
|
||||||
{
|
{
|
||||||
$q = $r = null;
|
$q = $r = null;
|
||||||
@ -2952,6 +2950,8 @@ class calendar_boupdate extends calendar_bo
|
|||||||
// Just user accounts
|
// Just user accounts
|
||||||
if (is_int($uid))
|
if (is_int($uid))
|
||||||
{
|
{
|
||||||
|
$preferences = new Api\Preferences($uid);
|
||||||
|
$part_prefs = $preferences->read_repository();
|
||||||
switch ($part_prefs['calendar']['reset_stati'])
|
switch ($part_prefs['calendar']['reset_stati'])
|
||||||
{
|
{
|
||||||
case 'no':
|
case 'no':
|
||||||
|
Loading…
Reference in New Issue
Block a user