Skip to content

Commit

Permalink
URL-encode # in file: URLs.
Browse files Browse the repository at this point in the history
The final piece to fixing Bug 798392.
  • Loading branch information
jralls committed Mar 1, 2022
1 parent 81b9a02 commit aeefd89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnucash/report/html-utilities.scm
Expand Up @@ -409,7 +409,7 @@
(define unreserved-chars-rfc3986
(char-set-union
(string->char-set "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
(string->char-set ":/?#[]@") ;gen-delims
(string->char-set ":/?[]@") ;gen-delims
(string->char-set "-._~")))

;;path must be absolute. On Windows an absolute path begins with a
Expand Down

0 comments on commit aeefd89

Please sign in to comment.