mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +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'}));
|
|
|