Skip to content
Snippets Groups Projects
Commit d1c3f902 authored by Web Admin's avatar Web Admin
Browse files

in sub dump append to file rather than clear

parent a73bcc90
No related branches found
No related tags found
No related merge requests found
......@@ -286,7 +286,7 @@ sub dump {
my $FH = IO::File->new;;
if($outfile) {
$FH->open(">$outfile") or throw("Could not open file $outfile");
$FH->open(">>$outfile") or throw("Could not open file $outfile");
} else {
$FH = \*STDOUT;
#mod_perl did not like the following
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment