diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php
index 6412ceb0418265bc46a37d8eb650da8807de7596..7a21c523435af5f38f24b3b8cc343c82375382b9 100644
--- a/lib/private/route/cachingrouter.php
+++ b/lib/private/route/cachingrouter.php
@@ -31,7 +31,7 @@ class CachingRouter extends Router {
 	 * @return string
 	 */
 	public function generate($name, $parameters = array(), $absolute = false) {
-		sort($parameters);
+		asort($parameters);
 		$key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . intval($absolute);
 		if ($this->cache->hasKey($key)) {
 			return $this->cache->get($key);