blob: 83e5de6ce142234de6e92fcbcbd2d6ae6665e3a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $Header: /home/cvs/cvsroot/freeside/rt/lib/RT/Condition/AnyTransaction.pm,v 1.1 2002-08-12 06:17:07 ivan Exp $
# Copyright 1996-2001 Jesse Vincent <jesse@fsck.com>
# Released under the terms of the GNU General Public License
package RT::Condition::AnyTransaction;
require RT::Condition::Generic;
@ISA = qw(RT::Condition::Generic);
=head2 IsApplicable
This happens on every transaction. it's always applicable
=cut
sub IsApplicable {
my $self = shift;
return(1);
}
1;
|