You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently only the variables get url encoded but in fact all segments must be url encoded, i.e. static text too.
Otherwise the generated URL contains invalid chars and does not conform to the RFC.
Current situation:
$routes = $this->getRoutes('test', new Route('/Жени/{slug1}'));
$this->assertEquals('/app.php/Жени/%D0%96%D0%B5%D0%BD%D0%B8', $this->getGenerator($routes)->generate('test', array('slug1' => 'Жени')));
Currently only the variables get url encoded but in fact all segments must be url encoded, i.e. static text too.
Otherwise the generated URL contains invalid chars and does not conform to the RFC.
Current situation:
Should be:
The text was updated successfully, but these errors were encountered: