From: Steinar H. Gunderson Date: Mon, 25 Dec 2006 22:26:32 +0000 (+0100) Subject: Use semicolon instead of ampersand to separate arguments. X-Git-Url: https://git.sesse.net/?p=pr0n;a=commitdiff_plain;h=408224e33918eb1837057c790798c9b3083b3e6a Use semicolon instead of ampersand to separate arguments. --- diff --git a/perl/Sesse/pr0n/Common.pm b/perl/Sesse/pr0n/Common.pm index 4ddc0da..3ab1c6b 100644 --- a/perl/Sesse/pr0n/Common.pm +++ b/perl/Sesse/pr0n/Common.pm @@ -128,7 +128,7 @@ sub get_query_string { next unless defined($value); next if (defined($defparam->{$key}) && $value == $defparam->{$key}); - $str .= ($first) ? "?" : '&'; + $str .= ($first) ? "?" : ';'; $str .= "$key=$value"; $first = 0; }