mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
11 lines
255 B
Perl
Executable File
11 lines
255 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Remove some directory from the open list
|
|
|
|
require './disk-usage-lib.pl';
|
|
&ReadParse();
|
|
@heiropen = &get_heiropen();
|
|
@heiropen = grep { $_ ne $in{'what'} } @heiropen;
|
|
&save_heiropen(\@heiropen);
|
|
&redirect("index.cgi#$in{'what'}");
|
|
|