From: Moritz Bunkus Date: Wed, 8 Aug 2012 15:15:29 +0000 (+0200) Subject: POD-Doku aktualisieren X-Git-Tag: release-3.0.0beta1~300 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=804893ae520f82feba9a736d7d1a857699b48acf;p=kivitendo-erp.git POD-Doku aktualisieren Fixt #1967. --- diff --git a/SL/SessionFile.pm b/SL/SessionFile.pm index dbed4154b..69997e9a1 100644 --- a/SL/SessionFile.pm +++ b/SL/SessionFile.pm @@ -95,7 +95,7 @@ destroyed or expires use SL::SessionFile; # Create a session file named "customer.csv" (relative names only) - my $sfile = SL::SessionFile->new("customer.csv", "w"); + my $sfile = SL::SessionFile->new('customer.csv', mode => 'w'); $sfile->fh->print("col1;col2;col3\n" . "value1;value2;value3\n"); $sfile->fh->close;