diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-06-07 00:56:06 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-06-07 00:56:06 -0700 |
commit | 43a06151e47d2c59b833cbd8c26d97865ee850b6 (patch) | |
tree | 42c51d94e7fa265461b508d061562be204ccc2c1 /rt/share/html/Ticket/Reminders.html | |
parent | 6587f6ba7d047ddc1686c080090afe7d53365bd4 (diff) |
starting to work...
Diffstat (limited to 'rt/share/html/Ticket/Reminders.html')
-rwxr-xr-x | rt/share/html/Ticket/Reminders.html | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/rt/share/html/Ticket/Reminders.html b/rt/share/html/Ticket/Reminders.html index 0bbd87e9a..8461efe44 100755 --- a/rt/share/html/Ticket/Reminders.html +++ b/rt/share/html/Ticket/Reminders.html @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -45,29 +45,27 @@ %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} -<& /Elements/Header, Title => loc("Reminder ticket #[_1]", $Ticket->Id) &> -<& /Ticket/Elements/Tabs, - Ticket => $Ticket, - current_tab => "Ticket/Reminders.html?id=".$Ticket->Id, - Title => loc("Reminders for ticket #[_1]", $Ticket->Id) &> +<& /Elements/Header, Title => loc("Reminders for ticket #[_1]", $Ticket->Id) &> +<& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Ticket => $Ticket); -<form action="<%RT->Config->Get('WebPath')%>/Ticket/Reminders.html" method="post"> +<form action="<%RT->Config->Get('WebPath')%>/Ticket/Reminders.html" name="UpdateReminders" id="UpdateReminders" method="post"> <&|/Widgets/TitleBox, title => loc("Reminders"), class=>'ticket-info-reminders' &> <& /Ticket/Elements/Reminders, Ticket => $Ticket, ShowCompleted => 1, Edit => 1 &> </&> -<& /Elements/Submit, Label => loc('Save') &> +<& /Elements/Submit, + Label => loc('Save Changes') &> </form> <%INIT> - my $Ticket = LoadTicket($id); - + +ProcessTicketReminders( TicketObj => $Ticket, ARGSRef => \%ARGS ); </%INIT> <%ARGS> $id => undef |