X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/e09347c89ca119213c4d8ba43083653cda793399..a50a0e0b31e566d6902881c15c899800d04ec04e:/SL/Form.pm diff --git a/SL/Form.pm b/SL/Form.pm index b85d3748f..4febdc72a 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -607,9 +607,10 @@ sub create_http_response { my $session_cookie_value = $main::auth->get_session_id(); $session_cookie_value ||= 'NO_SESSION'; - $session_cookie = $cgi->cookie('-name' => $main::auth->get_session_cookie_name(), - '-value' => $session_cookie_value, - '-path' => $base_path); + $session_cookie = $cgi->cookie('-name' => $main::auth->get_session_cookie_name(), + '-value' => $session_cookie_value, + '-path' => $base_path, + '-secure' => $ENV{HTTPS}); } my %cgi_params = ('-type' => $params{content_type}); @@ -1355,9 +1356,6 @@ Content-Length: $numbytes while () { print OUT $_; - open(DUMP_OUT, "> /tmp/lx2.dump" ); - print(DUMP_OUT Dumper($self)); - close(DUMP_OUT); } @@ -1398,6 +1396,7 @@ sub get_formname_translation { storno_packing_list => $main::locale->text('Storno Packing List'), sales_delivery_order => $main::locale->text('Delivery Order'), purchase_delivery_order => $main::locale->text('Delivery Order'), + dunning => $main::locale->text('Dunning'), ); $main::lxdebug->leave_sub();