Sort parameters and cast to int

remotes/origin/ldap_group_count
Robin Appelman 12 years ago
parent 51fbf0bcbc
commit 7f77b08098
  1. 3
      lib/private/route/cachingrouter.php

@ -31,7 +31,8 @@ class CachingRouter extends Router {
* @return string
*/
public function generate($name, $parameters = array(), $absolute = false) {
$key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . $absolute;
sort($parameters);
$key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . intval($absolute);
if ($this->cache->hasKey($key)) {
return $this->cache->get($key);
} else {

Loading…
Cancel
Save