[Rt-commit] r18028 - in rt/3.999/branches/merge_to_3.8.2: .
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Thu Jan 29 07:07:52 EST 2009
Author: sunnavy
Date: Thu Jan 29 07:07:51 2009
New Revision: 18028
Modified:
rt/3.999/branches/merge_to_3.8.2/ (props changed)
rt/3.999/branches/merge_to_3.8.2/share/html/Ticket/ModifyPeople.html
Log:
r19242 at sunnavys-mb: sunnavy | 2009-01-29 20:00:11 +0800
merged share/html/Ticket/ModifyPeople.html
Modified: rt/3.999/branches/merge_to_3.8.2/share/html/Ticket/ModifyPeople.html
==============================================================================
--- rt/3.999/branches/merge_to_3.8.2/share/html/Ticket/ModifyPeople.html (original)
+++ rt/3.999/branches/merge_to_3.8.2/share/html/Ticket/ModifyPeople.html Thu Jan 29 07:07:51 2009
@@ -60,21 +60,21 @@
<&| /Widgets/TitleBox, title => _('Modify people related to ticket #%1', $Ticket->id), width => "100%", color=> "#333399", class=>'ticket-info-people' &>
<& Elements/EditPeople, ticket => $Ticket, user_field => $user_field, user_string => $user_string, user_op => $user_op, group_string => $group_string, group_op => $group_op, group_field => $group_field &>
</&>
-<& /Elements/Submit, label => _('Save Changes'), caption => _("If you've updated anything above, be sure to"), color => "#333399" &>
+<& /Elements/Submit, name => 'submit_ticket', label => _('Save Changes'), caption => _("If you've updated anything above, be sure to"), color => "#333399" &>
</form>
</&>
<%INIT>
-my (@results, @wresults);
+my @results;
my $Ticket = load_ticket($id);
$m->callback( ticket_obj => $Ticket, args_ref => \%ARGS );
# if we're trying to search for watchers and nothing else
unless ($only_search_for_people or $only_search_for_group) {
- @results = process_ticket_basics( ticket_obj => $Ticket, args_ref => \%ARGS);
- @wresults = process_ticket_watchers( ticket_obj => $Ticket, args_ref => \%ARGS);
+ push @results, process_ticket_basics( ticket_obj => $Ticket, args_ref => \%ARGS);
+ push @results, process_ticket_watchers( ticket_obj => $Ticket, args_ref => \%ARGS);
}
push @results, @wresults;
More information about the Rt-commit
mailing list