ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 25,837
- Points
- 823
Reputation:
There are no double quotes left after the immediately preceeding
Diff:
Read more
Continue reading...
strtr
call (not completely visible in the diff below) which replaces double quotes with a space character.Diff:
Code:
--- a/src/XF/Mvc/Router.php
+++ b/src/XF/Mvc/Router.php
@@ -581,7 +581,7 @@ class Router
'`!"$%^&*()-+={}[]<>;:@#~,./?|' . "\r\n\t\\",
' ' . ' '
);
- $string = strtr($string, ['"' => '', "'" => '']);
+ $string = strtr($string, ["'" =>...
Read more
Continue reading...