From 4038565411fbb2c5f7092fa5a47171d3f3910b3c Mon Sep 17 00:00:00 2001 From: levinse Date: Fri, 3 Jun 2011 03:27:44 +0000 Subject: [PATCH] prevent en_US msgcat from being edited, RT12515 --- httemplate/edit/process/msgcat.cgi | 1 + 1 file changed, 1 insertion(+) diff --git a/httemplate/edit/process/msgcat.cgi b/httemplate/edit/process/msgcat.cgi index 7175fa2b3..937fc7c24 100644 --- a/httemplate/edit/process/msgcat.cgi +++ b/httemplate/edit/process/msgcat.cgi @@ -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); -- 2.11.0