~ubuntu-branches/ubuntu/natty/otrs2/natty-updates

« back to all changes in this revision

Viewing changes to Kernel/System/Stats/Dynamic/Ticket.pm

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2009-01-11 00:16:27 UTC
  • mto: (20.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20090111001627-u70e4vlj5sfw5kzk
Tags: upstream-2.3.3
ImportĀ upstreamĀ versionĀ 2.3.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Kernel/System/Stats/Dynamic/Ticket.pm - all advice functions
3
3
# Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
4
4
# --
5
 
# $Id: Ticket.pm,v 1.19 2008/06/30 16:46:21 mh Exp $
 
5
# $Id: Ticket.pm,v 1.21 2008/09/15 11:02:31 mh Exp $
6
6
# --
7
7
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
8
8
# the enclosed file COPYING for license information (GPL). If you
21
21
use Kernel::System::Type;
22
22
 
23
23
use vars qw($VERSION);
24
 
$VERSION = qw($Revision: 1.19 $) [1];
 
24
$VERSION = qw($Revision: 1.21 $) [1];
25
25
 
26
26
sub new {
27
27
    my ( $Type, %Param ) = @_;
469
469
        # get ticket free text
470
470
        my $TicketFreeText = $Self->{TicketObject}->TicketFreeTextGet(
471
471
            Type   => 'TicketFreeText' . $FreeKey,
 
472
            Action => 'AgentStats',
 
473
            FillUp => 1,
472
474
            UserID => 1,
473
475
        );
474
476