X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/c497b0352f95a55d204101b70ac771b2dc21ddee..f5c9c5eba0aed77f5cebe2e5cee5c7f3743b579e:/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/\\$//;