summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/msgcat.cgi
blob: 1f94f666801abe84c0f5e36f8c32caa2ed73f5cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%

my $error;
foreach my $param ( grep { /^\d+$/ } $cgi->param ) {
  my $old = qsearchs('msgcat', { msgnum=>$param } );
  next if $old->msg eq $cgi->param($param); #no need to update identical records
  my $new = new FS::msgcat { $old->hash };
  $new->msg($cgi->param($param));
  $error = $new->replace($old);
  last if $error;
}

if ( $error ) {
  $cgi->param('error',$error);
  print $cgi->redirect($p. "msgcat.cgi?". $cgi->query_string );
} else {
  print $cgi->redirect(popurl(3). "browse/msgcat.cgi");
}

%>