Skip to content
Snippets Groups Projects
Commit ce1fd262 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Migrated rest of the webserver pages to new args

parent b895d75b
No related branches found
No related tags found
No related merge requests found
......@@ -33,11 +33,12 @@ our (@ISA,@EXPORT,@EXPORT_OK);
sub _catchall
{
my ($globals,$module,$daction,$request) = @_;
my ($kernel,$globals,$module,$daction,$request) = @_;
# If we not passed default by the main app, just return
return if ($daction ne "default");
# Build content
my $content = "";
......
......@@ -43,7 +43,7 @@ our (@ISA,@EXPORT,@EXPORT_OK);
sub _catchall
{
my ($globals,$module,$daction,$request) = @_;
my ($kernel,$globals,$module,$daction,$request) = @_;
my $logger = $globals->{'logger'};
......@@ -113,7 +113,7 @@ sub _catchall
# Set to binary mode
binmode(FH);
# Suck in file
my $buffer;
my $buffer = "";
my $len;
do {
$len = read(FH,$buffer,4096,length($buffer));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment