summaryrefslogtreecommitdiff
path: root/log.pl
diff options
context:
space:
mode:
Diffstat (limited to 'log.pl')
-rwxr-xr-xlog.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/log.pl b/log.pl
index 84ccbd1..6cdaf40 100755
--- a/log.pl
+++ b/log.pl
@@ -6,7 +6,9 @@ use CGI::Carp 'fatalsToBrowser';
use URI::Escape;
print header;
-print start_html('nzbget status');
+use local::menu;
+my $menu=new local::menu(%ENV);
+print $menu->start_html('log');
my $cli = new local::nzbget;
print CGI::start_table();
@@ -25,4 +27,4 @@ foreach my $row (@{ $resp->value})
# }
}
print CGI::end_table();
-print end_html;
+print $menu->end_html;