2007-04-12 20:24:50 +00:00
|
|
|
#!/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);
|
2018-02-06 14:32:05 +01:00
|
|
|
&redirect("tree.cgi#".&urlize($in{'what'}));
|
2007-04-12 20:24:50 +00:00
|
|
|
|