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

« back to all changes in this revision

Viewing changes to Kernel/System/Ticket/CustomerPermission/GroupCheck.pm

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2007-04-14 17:58:55 UTC
  • mto: (20.1.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: package-import@ubuntu.com-20070414175855-9ne0w01yu1q44ch0
Tags: upstream-2.1.7
ImportĀ upstreamĀ versionĀ 2.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# --
2
2
# Kernel/System/Ticket/CustomerPermission/GroupCheck.pm -
3
3
# the sub module of the global ticket handle
4
 
# Copyright (C) 2001-2004 Martin Edenhofer <martin+code@otrs.org>
 
4
# Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
5
5
# --
6
 
# $Id: GroupCheck.pm,v 1.5 2004/10/02 08:14:58 martin Exp $
 
6
# $Id: GroupCheck.pm,v 1.7 2006/11/02 12:20:58 tr Exp $
7
7
# --
8
8
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
9
9
# the enclosed file COPYING for license information (GPL). If you
15
15
use strict;
16
16
 
17
17
use vars qw(@ISA $VERSION);
18
 
$VERSION = '$Revision: 1.5 $';
 
18
$VERSION = '$Revision: 1.7 $';
19
19
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
20
20
 
21
 
# --
22
21
sub new {
23
22
    my $Type = shift;
24
23
    my %Param = @_;
34
33
 
35
34
    return $Self;
36
35
}
37
 
# --
 
36
 
38
37
sub Run {
39
38
    my $Self = shift;
40
39
    my %Param = @_;
63
62
    }
64
63
    return;
65
64
}
66
 
# --
67
65
 
68
66
1;