mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
12 lines
244 B
Perl
Executable File
12 lines
244 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# open.cgi
|
|
# Add some class to the open list
|
|
|
|
require './software-lib.pl';
|
|
&ReadParse();
|
|
@heiropen = &get_heiropen();
|
|
push(@heiropen, $in{'what'});
|
|
&save_heiropen(\@heiropen);
|
|
&redirect("tree.cgi#".&urlize($in{'what'}));
|
|
|