summaryrefslogtreecommitdiff
path: root/mydl.pl
diff options
context:
space:
mode:
Diffstat (limited to 'mydl.pl')
-rwxr-xr-xmydl.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/mydl.pl b/mydl.pl
index 5c46937..74dd98f 100755
--- a/mydl.pl
+++ b/mydl.pl
@@ -9,7 +9,9 @@ my $user = new local::user($ENV{REMOTE_USER});
print header;
-print start_html('my downloads');
+use local::menu;
+my $menu=new local::menu;
+print $menu->start_html('my downloads');
print CGI::start_table();
my @downloads;
@@ -29,5 +31,5 @@ foreach my $dl ( @downloads)
;
print CGI::end_table();
-print end_html;
+print $menu->end_html();