mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
17 lines
348 B
Perl
Executable File
17 lines
348 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Remove some zone from the open list
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
# Globals
|
|
our (%in);
|
|
|
|
require './bind8-lib.pl';
|
|
&ReadParse();
|
|
my @heiropen = &get_heiropen();
|
|
@heiropen = grep { $_ ne $in{'what'} } @heiropen;
|
|
&save_heiropen(\@heiropen);
|
|
&redirect("index.cgi#$in{'what'}");
|
|
|