Skip to content
This repository has been archived by the owner on Sep 10, 2023. It is now read-only.

Commit

Permalink
ZF-9376: fixed php notice on delte using ext/memcache 3.x and memcach…
Browse files Browse the repository at this point in the history
…ed 1.4.4

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21420 44c647ce-9c0f-0410-b52a-842ac1e357ba
  • Loading branch information
mabe committed Mar 9, 2010
1 parent 1c4f8fd commit 9f91933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Cache/Backend/Memcached.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public function save($data, $id, $tags = array(), $specificLifetime = false)
*/
public function remove($id)
{
return $this->_memcache->delete($id);
return $this->_memcache->delete($id, 0);
}

/**
Expand Down

0 comments on commit 9f91933

Please sign in to comment.