Handle hostnames with upper-case letters
[webmin.git] / burner / save_mkisofs.cgi
1 #!/usr/local/bin/perl
2 # save_mkisofs.cgi
3 # Save global ISO filesystem options
4
5 require './burner-lib.pl';
6 $access{'global'} || &error($text{'mkisofs_ecannot'});
7 &ReadParse();
8
9 $config{'novers'} = $in{'novers'};
10 $config{'notrans'} = $in{'notrans'};
11 $config{'nobak'} = $in{'nobak'};
12 $config{'fsyms'} = $in{'fsyms'};
13 &write_file("$module_config_directory/config", \%config);
14 &redirect("");
15