From: b Date: Sat, 8 Jul 2023 14:41:03 +0000 (+0000) Subject: No newline writing in postgata file X-Git-Tag: v1.0.15 X-Git-Url: http://bicyclesonthemoon.info/git-projects/?a=commitdiff_plain;h=c62c733924a11543a4ca92883660c23d9714cb39;p=botm%2Fcommon-perl No newline writing in postgata file --- diff --git a/botm_common.pm b/botm_common.pm index cda92b6..a93b118 100644 --- a/botm_common.pm +++ b/botm_common.pm @@ -25,7 +25,7 @@ use Encode ('encode', 'decode'); use Exporter; -our $VERSION = '1.0.14'; +our $VERSION = '1.0.15'; our @ISA = qw(Exporter); our @EXPORT = (); our @EXPORT_OK = ( @@ -341,7 +341,7 @@ sub write_postdata_file { my $data_encoded = url_query_encode($data, $encoding_data); - print $fh $data_encoded."\n"; + print $fh $data_encoded; # If argument was a path the file must be closed. unless (ref($file)) {