Author: chabotc
Date: Sun Nov 23 22:44:49 2008
New Revision: 720123
URL: http://svn.apache.org/viewvc?rev=720123&view=rev
Log:
Fixed a silly typo in the memcache cache class
Modified:
incubator/shindig/trunk/php/src/common/CacheMemcache.php
Modified: incubator/shindig/trunk/php/src/common/CacheMemcache.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/CacheMemcache.php?rev=720123&r1=720122&r2=720123&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/common/CacheMemcache.php (original)
+++ incubator/shindig/trunk/php/src/common/CacheMemcache.php Sun Nov 23
22:44:49 2008
@@ -56,7 +56,7 @@
private function removeLock($key) {
$this->check();
// suppress all warnings, if some other process removed it that's ok too
- @memcache_delete($key . '.lock');
+ @memcache_delete($this->connection, $key . '.lock');
}
private function waitForLock($key) {