[Rt-commit] r2006 - in rt/branches/3.3-TESTING: . lib/RT
lib/RT/Interface
jesse at bestpractical.com
jesse at bestpractical.com
Mon Dec 20 12:30:07 EST 2004
Author: jesse
Date: Mon Dec 20 12:30:06 2004
New Revision: 2006
Modified:
rt/branches/3.3-TESTING/ (props changed)
rt/branches/3.3-TESTING/lib/RT/Interface/Email.pm
rt/branches/3.3-TESTING/lib/RT/Interface/Web.pm
rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm
Log:
r2469 at hualien: jesse | 2004-12-20T16:35:42.953265Z
r1983 at hualien: jesse | 2004-12-09T07:15:23.115403Z
Modified: rt/branches/3.3-TESTING/lib/RT/Interface/Email.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Interface/Email.pm (original)
+++ rt/branches/3.3-TESTING/lib/RT/Interface/Email.pm Mon Dec 20 12:30:06 2004
@@ -350,7 +350,7 @@
next if ($args{'CurrentUser'}->EmailAddress =~ /^\Q$Address\E$/i);
next if ($args{'QueueObj'}->CorrespondAddress =~ /^\Q$Address\E$/i);
next if ($args{'QueueObj'}->CommentAddress =~ /^\Q$Address\E$/i);
- next if (IsRTAddress($Address));
+ next if (RT::EmailParser::IsRTAddress(undef, $Address));
push (@Addresses, $Address);
}
Modified: rt/branches/3.3-TESTING/lib/RT/Interface/Web.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Interface/Web.pm (original)
+++ rt/branches/3.3-TESTING/lib/RT/Interface/Web.pm Mon Dec 20 12:30:06 2004
@@ -311,6 +311,8 @@
MIMEObj => $MIMEObj
);
foreach my $arg (keys %ARGS) {
+ my $cfid = $1;
+
next if ($arg =~ /-Magic$/);
#Object-RT::Ticket--CustomField-3-Values
if ($arg =~ /^Object-RT::Transaction--CustomField-/) {
@@ -1251,7 +1253,6 @@
}
return (@results);
}
- }
}
# {{{ sub ProcessTicketWatchers
@@ -1407,6 +1408,7 @@
my $Ticket = $args{'TicketObj'};
my $ARGSRef = $args{'ARGSRef'};
+
my (@results) = ProcessRecordLinks(RecordObj => $Ticket,
ARGSRef => $ARGSRef);
Modified: rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm
==============================================================================
--- rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm (original)
+++ rt/branches/3.3-TESTING/lib/RT/Ticket_Overlay.pm Mon Dec 20 12:30:06 2004
@@ -3242,6 +3242,7 @@
# }}}
+
# {{{ Actions + Routines dealing with transactions
# {{{ sub SetTold and _SetTold
More information about the Rt-commit
mailing list