Handle hostnames with upper-case letters
[webmin.git] / bind8 / open.cgi
1 #!/usr/local/bin/perl
2 # Add some zone to the open list
3
4 require './bind8-lib.pl';
5 &ReadParse();
6 @heiropen = &get_heiropen();
7 push(@heiropen, $in{'what'});
8 &save_heiropen(\@heiropen);
9 &redirect("index.cgi#$in{'what'}");
10