Skip to content
This repository has been archived by the owner on Apr 22, 2022. It is now read-only.

Commit

Permalink
fixed undefined property on Query
Browse files Browse the repository at this point in the history
  • Loading branch information
fprochazka committed Sep 11, 2014
1 parent ee2730f commit 2ba70f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/Search/Query.php
Expand Up @@ -133,7 +133,7 @@ public function setHydrationMode($mode)
*/
public function useResultCache($useCache, $cacheLifetime = null)
{
$this->useCache = $useCache;
$this->useResultCache = $useCache;
$this->cacheLifetime = $cacheLifetime;
return $this;
}
Expand Down

0 comments on commit 2ba70f4

Please sign in to comment.