mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-20 12:58:46 +01:00
Do not include date in state, don't want favorites to be stuck in time.
This commit is contained in:
parent
7a99c3f8a5
commit
3373d16c71
@ -1580,12 +1580,6 @@ app.classes.calendar = AppJS.extend(
|
|||||||
state = state ? JSON.parse(state) : {};
|
state = state ? JSON.parse(state) : {};
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure date is consitantly a string, in case it needs to be passed to server
|
|
||||||
if(state.date && state.date.toJSON)
|
|
||||||
{
|
|
||||||
state.date = state.date.toJSON();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Don't store current user in state to allow admins to create favourites for all
|
// Don't store current user in state to allow admins to create favourites for all
|
||||||
// Should make no difference for normal users.
|
// Should make no difference for normal users.
|
||||||
if(state.owner == egw.user('account_id'))
|
if(state.owner == egw.user('account_id'))
|
||||||
@ -1594,7 +1588,8 @@ app.classes.calendar = AppJS.extend(
|
|||||||
// it will work for other users too.
|
// it will work for other users too.
|
||||||
state.owner = 0;
|
state.owner = 0;
|
||||||
}
|
}
|
||||||
// Don't store first and last
|
// Don't store date or first and last
|
||||||
|
delete state.date;
|
||||||
delete state.first;
|
delete state.first;
|
||||||
delete state.last;
|
delete state.last;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user