mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 08:39:07 +01:00
Fix Calendar new event opened with wrong owner
This commit is contained in:
parent
60def94d07
commit
1b14b2ad31
@ -449,12 +449,20 @@ app.classes.calendar = AppJS.extend(
|
||||
{
|
||||
ownerId = 'r' + ownerId;
|
||||
}
|
||||
that.egw.open(null, 'calendar', 'add', {
|
||||
date: timestamp[0],
|
||||
hour: timestamp[1],
|
||||
minute: timestamp[2],
|
||||
owner: ownerId
|
||||
}, '_blank');
|
||||
|
||||
var eventInfo =
|
||||
{
|
||||
date: timestamp[0],
|
||||
hour: timestamp[1],
|
||||
minute: timestamp[2]
|
||||
};
|
||||
|
||||
if (ownerId != 0)
|
||||
{
|
||||
$j(eventInfo).extend(eventInfo,{owner: ownerId});
|
||||
}
|
||||
|
||||
that.egw.open(null, 'calendar', 'add', eventInfo , '_blank');
|
||||
});
|
||||
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user