Browse Source

[Profiler] Fix importing profiler data

Victor Berchet 14 years ago
parent
commit
96597024e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Symfony/Component/HttpKernel/Profiler/Profiler.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Profiler/Profiler.php

@@ -124,7 +124,7 @@ class Profiler
             return false;
         }
 
-        $unpack = unpack('H*', serialize($this->collectors));
+        $unpack = unpack('H*', serialize($collectors));
 
         $this->storage->write($token, $unpack[1], $ip, $url, $time);