mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
11 lines
269 B
Perl
Executable File
11 lines
269 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# close.cgi
|
|
# Remove some class from the open list
|
|
|
|
require './software-lib.pl';
|
|
&ReadParse();
|
|
@heiropen = &get_heiropen();
|
|
@heiropen = grep { $_ ne $in{'what'} } @heiropen;
|
|
&save_heiropen(\@heiropen);
|
|
&redirect("tree.cgi#".&urlize($in{'what'}));
|