diff options
author | mark <mark> | 2010-11-17 21:26:40 +0000 |
---|---|---|
committer | mark <mark> | 2010-11-17 21:26:40 +0000 |
commit | 9916976831c67272ea1870d5d65a3b00ddd1b8de (patch) | |
tree | a878610c825b689f419321ccf69990d0a8103aa5 /rt/lib/RT/Scrip_Overlay.pm | |
parent | 4ea80084f316a0ac5235967d09479b634428c891 (diff) |
create ticket on custom field change, RT#10139
Diffstat (limited to 'rt/lib/RT/Scrip_Overlay.pm')
-rw-r--r-- | rt/lib/RT/Scrip_Overlay.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rt/lib/RT/Scrip_Overlay.pm b/rt/lib/RT/Scrip_Overlay.pm index 6c2cbd58e..b5beb3434 100644 --- a/rt/lib/RT/Scrip_Overlay.pm +++ b/rt/lib/RT/Scrip_Overlay.pm @@ -103,6 +103,8 @@ sub Create { CustomPrepareCode => undef, CustomCommitCode => undef, CustomIsApplicableCode => undef, + ConditionRules => undef, + ActionRules => undef, @_ ); @@ -162,6 +164,8 @@ sub Create { CustomPrepareCode => $args{'CustomPrepareCode'}, CustomCommitCode => $args{'CustomCommitCode'}, CustomIsApplicableCode => $args{'CustomIsApplicableCode'}, + ConditionRules => $args{'ConditionRules'}, + ActionRules => $args{'ActionRules'}, ); if ( $id ) { return ( $id, $self->loc('Scrip Created') ); |