Development

- Removed yet another depricated method.
- Fixed $_GET parameters being merged on default when calling getUrl.
- Fixed double / that could appear on urls sometimes.
This commit is contained in:
Simon Sessingø
2016-11-21 03:05:43 +01:00
parent 5415d73f4d
commit efe5767220
3 changed files with 3 additions and 28 deletions
@@ -103,7 +103,7 @@ abstract class LoadableRoute extends Route implements ILoadableRoute
}
}
$url .= '/' . join('/', $unknownParams);
$url .= join('/', $unknownParams);
return rtrim($url, '/') . '/';
}