projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91bbaad
)
POD-Doku aktualisieren
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 8 Aug 2012 15:15:29 +0000
(17:15 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 8 Aug 2012 15:15:29 +0000
(17:15 +0200)
Fixt #1967.
SL/SessionFile.pm
patch
|
blob
|
history
diff --git
a/SL/SessionFile.pm
b/SL/SessionFile.pm
index
dbed415
..
69997e9
100644
(file)
--- 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;