commit 4a7f5bae8842d57984b6f0f260eeb97c104d4d59 from: Omar Polo date: Thu Jan 05 14:51:17 2023 UTC gotwebd: urlencode also the double quote character URLs are embedded as part of the HTML and, while it seems legal from RFC3986 to leave that character unquoted, we need it quoted to avoid breaking the HTML output. ok tracey@ commit - 43d421de222216d318387afcd42a4941d2714d95 commit + 4a7f5bae8842d57984b6f0f260eeb97c104d4d59 blob - 08f7194204d5247935adcee192184a531f881ede blob + a8fdd952ec48f1a229440e115de67205cf20f049 --- gotwebd/gotweb.c +++ gotwebd/gotweb.c @@ -1561,6 +1561,8 @@ should_urlencode(int c) case ',': case ';': case '=': + /* needed because the URLs are embedded into the HTML */ + case '\"': return 1; default: return 0;