Skip to content

Commit

Permalink
Percentage encode dot character in urlencode
Browse files Browse the repository at this point in the history
  • Loading branch information
sublipri committed Jul 29, 2023
1 parent 29ef985 commit cadd104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/www/cgi-bin/lib/urlencode
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ encoder() {
LANG=C

while IFS= read -r c; do
case "$c" in [a-zA-Z0-9._-])
case "$c" in [a-zA-Z0-9_-])
printf '%s' "$c"
continue
;;
Expand Down

0 comments on commit cadd104

Please sign in to comment.