default to a session cookie instead of setting an explicit timeout, weird timezone...
[freeside.git] / httemplate / edit / process / msgcat.cgi
index 7175fa2..937fc7c 100644 (file)
@@ -13,6 +13,7 @@ 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
+  die "editing en_US locale is currently disabled" if $old->locale eq 'en_US';
   my $new = new FS::msgcat { $old->hash };
   $new->msg($cgi->param($param));
   $error = $new->replace($old);