From 3d762dd92fdd2fbedd3a7b949a0a7a80df050077 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Fri, 18 Jan 2013 21:37:54 +0100 Subject: [PATCH] [HttpKernel] Fixed the Redis profiler storage return value --- .../Component/HttpKernel/Profiler/RedisProfilerStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php b/src/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php index be8ae49f2c..d62d6c7996 100644 --- a/src/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php +++ b/src/Symfony/Component/HttpKernel/Profiler/RedisProfilerStorage.php @@ -89,7 +89,7 @@ class RedisProfilerStorage implements ProfilerStorageInterface continue; } - $result[$itemToken] = array( + $result[] = array( 'token' => $itemToken, 'ip' => $itemIp, 'method' => $itemMethod,