summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/invoice_template.html
blob: 6c9371ad16ce1d8d1a27b664307351bfe8f5d003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');

my $conf = new FS::Conf;

my $confname = $cgi->param('confname');
my $value = $cgi->param('value');

$conf->set($confname, $value);

$cgi->redirect(popurl(3). 'browse/invoice_template.html');

</%init>