X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/008c2e1529744e195616ac2cbf7736f06a90816e..3f4f01dcd306d7ebb51a1186d722e6aecd237003:/SL/MoreCommon.pm diff --git a/SL/MoreCommon.pm b/SL/MoreCommon.pm index 13d421bda..dfc5a7d80 100644 --- a/SL/MoreCommon.pm +++ b/SL/MoreCommon.pm @@ -171,7 +171,7 @@ sub uri_encode { } sub uri_decode { - my ($str) = @_; + my $str = $_[0] // ''; $str =~ tr/+/ /; $str =~ s/\\$//;