mirror of
https://github.com/webmin/webmin.git
synced 2025-08-15 21:20:10 +00:00
11 lines
230 B
Perl
Executable File
11 lines
230 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Add some directory to the open list
|
|
|
|
require './disk-usage-lib.pl';
|
|
&ReadParse();
|
|
@heiropen = &get_heiropen();
|
|
push(@heiropen, $in{'what'});
|
|
&save_heiropen(\@heiropen);
|
|
&redirect("index.cgi#$in{'what'}");
|
|
|