|
@@ -171,7 +171,7 @@ class ProfilerController extends ContainerAware
|
|
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:search.twig', array(
|
|
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:search.twig', array(
|
|
'token' => $token,
|
|
'token' => $token,
|
|
'profiler' => $profiler,
|
|
'profiler' => $profiler,
|
|
- 'tokens' => $profiler->find($ip, $url, 10),
|
|
|
|
|
|
+ 'tokens' => $profiler->find($ip, $url, $limit),
|
|
'ip' => $ip,
|
|
'ip' => $ip,
|
|
'url' => $url,
|
|
'url' => $url,
|
|
'limit' => $limit,
|
|
'limit' => $limit,
|
|
@@ -196,7 +196,7 @@ class ProfilerController extends ContainerAware
|
|
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:results.twig', array(
|
|
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:results.twig', array(
|
|
'token' => $token,
|
|
'token' => $token,
|
|
'profiler' => $this->container->get('profiler')->loadFromToken($token),
|
|
'profiler' => $this->container->get('profiler')->loadFromToken($token),
|
|
- 'tokens' => $profiler->find($ip, $url, 10),
|
|
|
|
|
|
+ 'tokens' => $profiler->find($ip, $url, $limit),
|
|
'ip' => $ip,
|
|
'ip' => $ip,
|
|
'url' => $url,
|
|
'url' => $url,
|
|
'limit' => $limit,
|
|
'limit' => $limit,
|