mirror of
https://github.com/webmin/webmin.git
synced 2025-08-19 01:15:14 +00:00
16 lines
313 B
Perl
Executable File
16 lines
313 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';
|
|
&ReadParse();
|
|
my @heiropen = &get_heiropen();
|
|
push(@heiropen, $in{'what'});
|
|
&save_heiropen(\@heiropen);
|
|
&redirect("index.cgi#$in{'what'}");
|
|
|