[otrs-cvs]
CVS: FAQ/Kernel/Modules AgentFAQ.pm, 1.7, 1.8 FAQ.pm, 1.4, 1.5
cvs-log at otrs.org
cvs-log at otrs.org
Wed Dec 13 16:22:03 CET 2006
- Previous message: [otrs-cvs] CVS: ITSMCMDB/Kernel/System/LinkObject2 ITSMComputer.pm,
1.4, 1.5
ITSMHardware.pm,1.4,1.5 ITSMLocation.pm,1.4,1.5 ITSMNetwork.pm,1.4,1.5
ITSMOrgUnit.pm,1.4,1.5 ITSMSLA.pm,1.4,1.5 ITSMService.pm,1.4,1.5
ITSMSoftware.pm,1.4,1.5
- Next message: [otrs-cvs] CVS: FAQ/Kernel/Output/HTML/Standard AgentFAQ.dtl, 1.5,
1.6 FAQ.dtl,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/FAQ/Kernel/Modules
In directory lancelot:/tmp/cvs-serv17020/Kernel/Modules
Modified Files:
AgentFAQ.pm FAQ.pm
Log Message:
fixed bug not display category
Index: AgentFAQ.pm
===================================================================
RCS file: /home/cvs/FAQ/Kernel/Modules/AgentFAQ.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** AgentFAQ.pm 25 Oct 2006 10:06:19 -0000 1.7
--- AgentFAQ.pm 13 Dec 2006 15:22:01 -0000 1.8
***************
*** 16,19 ****
--- 16,20 ----
use Kernel::System::LinkObject;
use Kernel::Modules::FAQ;
+ use Kernel::System::User;
use vars qw($VERSION @ISA);
***************
*** 47,51 ****
$Self->{LayoutObject}->FatalError(Message => "Got no $_!") if (!$Self->{$_});
}
!
return $Self;
}
--- 48,52 ----
$Self->{LayoutObject}->FatalError(Message => "Got no $_!") if (!$Self->{$_});
}
! $Self->{UserObject} = Kernel::System::User->new(%Param);
return $Self;
}
***************
*** 833,836 ****
--- 834,842 ----
$Frontend{Name} = $Row->{Name};
$Frontend{Created} = $Row->{Created};
+ my %User = $Self->{UserObject}->GetUserData(
+ UserID => $Row->{CreatedBy},
+ Cached => 1,
+ );
+ $Frontend{CreatedBy} = "$User{UserLogin} ($User{UserFirstname} $User{UserLastname})";
$Self->{LayoutObject}->Block(
Index: FAQ.pm
===================================================================
RCS file: /home/cvs/FAQ/Kernel/Modules/FAQ.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** FAQ.pm 25 Oct 2006 10:06:19 -0000 1.4
--- FAQ.pm 13 Dec 2006 15:22:01 -0000 1.5
***************
*** 919,923 ****
%Frontend = ();
my %Data = $Self->{FAQObject}->FAQGet(ItemID => $_);
-
if($CssRow eq 'searchpassive') {
$CssRow = 'searchactive';
--- 919,922 ----
- Previous message: [otrs-cvs] CVS: ITSMCMDB/Kernel/System/LinkObject2 ITSMComputer.pm,
1.4, 1.5
ITSMHardware.pm,1.4,1.5 ITSMLocation.pm,1.4,1.5 ITSMNetwork.pm,1.4,1.5
ITSMOrgUnit.pm,1.4,1.5 ITSMSLA.pm,1.4,1.5 ITSMService.pm,1.4,1.5
ITSMSoftware.pm,1.4,1.5
- Next message: [otrs-cvs] CVS: FAQ/Kernel/Output/HTML/Standard AgentFAQ.dtl, 1.5,
1.6 FAQ.dtl,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs-log
mailing list