summaryrefslogtreecommitdiff
path: root/httemplate/edit/msg_template.html
blob: 889b10731e1408bcd945c74b40e215f1a892832e (plain)
1
2
3
4
5
6
7
8
9
<%init>
my $msgclass = 'email';
if ( $cgi->param('msgnum') =~ /^(\d+)$/ ) {
  my $msg_template = FS::msg_template->by_key($1)
    or die "unknown msgnum $1";
  $msgclass = $msg_template->msgclass;
}
print $cgi->redirect($fsurl."edit/msg_template/$msgclass.html?".$cgi->query_string);
</%init>