mirror of
https://github.com/webmin/webmin.git
synced 2026-01-16 15:06:07 +00:00
12 lines
275 B
Perl
Executable File
12 lines
275 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("ipkg-tree.cgi#".&urlize($in{'what'}));
|
|
|