Files
webmin/bind8/open.cgi
2026-05-22 23:54:11 -05:00

16 lines
329 B
Perl
Executable File

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