|
Hello, I was having the same problem. This problem seems to exist in version 2.0.4 and every version after that. After researching the bug via http://bugs.otrs.org, #1113 had the answer. You need to change Ticket.pm. Here is the code that is posted, which I have implemented and seems to work: Index: System/Ticket.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Ticket.pm,v
retrieving revision 1.227
diff -u -r1.227 Ticket.pm
--- System/Ticket.pm 19 Oct 2006 20:15:45 -0000 1.227
+++ System/Ticket.pm 29 Oct 2006 16:16:26 -0000
@@ -106,12 +106,7 @@
}
$Self->{UserObject} = Kernel::System::User->new(%Param);
- if (!$Param{GroupObject}) {
- $Self->{GroupObject} = Kernel::System::Group->new(%Param);
- }
- else {
- $Self->{GroupObject} = $Param{GroupObject};
- }
+ $Self->{GroupObject} = Kernel::System::Group->new(%Param);
$Self->{CustomerUserObject} = Kernel::System::CustomerUser->new(%Param);
if (!$Param{CustomerGroupObject}) {
===================================================================Good Luck! - Jennifer
|
_______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs Support orr consulting for your OTRS system? => http://www.otrs.com/
