properly cache nulls for pivotGet()

This commit is contained in:
Evan Prodromou 2011-08-02 11:54:10 -04:00
parent 5a132dbef0
commit e05f423bea
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class Memcached_DataObject extends Safe_DataObject
// save the fact that no such row exists // save the fact that no such row exists
$c = self::memcache(); $c = self::memcache();
if (!empty($c)) { if (!empty($c)) {
$ck = self::multicacheKey($cls, $keyCol, $keyVal); $ck = self::multicacheKey($cls, $kv);
$c->set($ck, null); $c->set($ck, null);
} }
} }