[otrs-cvs]
CVS: Calendar/Kernel/Output/HTML NotificationCalendar.pm, 1.4, 1.5
cvs-log at otrs.org
cvs-log at otrs.org
Wed Oct 4 23:04:50 CEST 2006
Update of /home/cvs/Calendar/Kernel/Output/HTML
In directory lancelot:/tmp/cvs-serv19527/Kernel/Output/HTML
Modified Files:
NotificationCalendar.pm
Log Message:
added sequence feature
Index: NotificationCalendar.pm
===================================================================
RCS file: /home/cvs/Calendar/Kernel/Output/HTML/NotificationCalendar.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** NotificationCalendar.pm 1 Feb 2006 17:27:16 -0000 1.4
--- NotificationCalendar.pm 4 Oct 2006 20:04:48 -0000 1.5
***************
*** 1,5 ****
# --
# Kernel/Output/HTML/NotificationCalendar.pm
! # Copyright (C) 2001-2006 Martin Edenhofer <martin+code at otrs.org>
# --
# $Id$
--- 1,5 ----
# --
# Kernel/Output/HTML/NotificationCalendar.pm
! # Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
# --
# $Id$
***************
*** 70,74 ****
foreach (@EventIDs) {
# get event
! my %Event = $Self->{CalendarEventObject}->EventGet(EventID => $_);
# dont show private events of other people
if ($Event{State} =~ /private/i && $Event{UserID} ne $Self->{UserID}) {
--- 70,74 ----
foreach (@EventIDs) {
# get event
! my %Event = %{$_}; #$Self->{CalendarEventObject}->EventGet(EventID => $_);
# dont show private events of other people
if ($Event{State} =~ /private/i && $Event{UserID} ne $Self->{UserID}) {
More information about the cvs-log
mailing list