We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f741760 commit 0c18b9cCopy full SHA for 0c18b9c
1 file changed
app/inc/router.php
@@ -1,12 +1,12 @@
1
<?php
2
3
/*
4
- In Transvision we can have queries with a semicolon and a number that lead
+ In Transvision we can have queries with a colon and a number that lead
5
to URLs that parse_url() can't parse probably because it thinks that it is a
6
port definition. ex:
7
?sourcelocale=en-US&locale=fr&repo=beta&search_type=entities&recherche=mail/chrome/messenger/mime.properties:1008
8
9
- That's why we escape the semicolon to %3A before parsing it and then revert
+ That's why we escape the colon to %3A before parsing it and then revert
10
that change in the query variable created.
11
*/
12
$url = parse_url(str_replace(':', '%3A', $_SERVER['REQUEST_URI']));
0 commit comments