Files
webmin/bind8/open.cgi
Joe Cooper eaba21745a strict/warn
2016-06-02 00:57:30 -07:00

14 lines
260 B
Perl
Executable File

#!/usr/local/bin/perl
# Add some zone to the open list
use strict;
use warnings;
our (%in);
require './bind8-lib.pl';
&ReadParse();
my @heiropen = &get_heiropen();
push(@heiropen, $in{'what'});
&save_heiropen(\@heiropen);
&redirect("index.cgi#$in{'what'}");