mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Calendar - fix incorrectly moved preference read
This commit is contained in:
parent
a3d0a6e9ab
commit
0f5ff805ec
@ -2941,8 +2941,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;
|
||||||
@ -2955,6 +2953,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