Remove URL reverse escaping

This commit is contained in:
Yarmo Mackenbach 2020-06-28 23:49:00 +02:00
parent 2ab91d7659
commit d0eeb37eb4

View file

@ -29,11 +29,6 @@ $router->map('GET', '/[:uid]', function() {}, 'profile');
// Router matching // Router matching
$match = $router->match(); $match = $router->match();
// Fix "escaped" email address
if (array_key_exists('uid', $match['params'])) {
$match['params']['uid'] = str_lreplace('_', '.', $match['params']['uid']);
}
// Render the appropriate route // Render the appropriate route
if(is_array($match) && is_callable($match['target'])) { if(is_array($match) && is_callable($match['target'])) {
switch ($match['name']) { switch ($match['name']) {