Changeset 24607
- Timestamp:
- 11/30/09 22:39:08 (3 years ago)
- Files:
-
- branches/1.2/lib/cache/sfMemcacheCache.class.php (modified) (1 diff)
- branches/1.3/lib/cache/sfMemcacheCache.class.php (modified) (1 diff)
- branches/1.4/lib/cache/sfMemcacheCache.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.2/lib/cache/sfMemcacheCache.class.php
r23925 r24607 259 259 else 260 260 { 261 $keys[] = $this->getOption('prefix').$key; 261 if (!in_array($this->getOption('prefix').$key, $keys)) 262 { 263 $keys[] = $this->getOption('prefix').$key; 264 } 262 265 } 263 266 branches/1.3/lib/cache/sfMemcacheCache.class.php
r23925 r24607 259 259 else 260 260 { 261 $keys[] = $this->getOption('prefix').$key; 261 if (!in_array($this->getOption('prefix').$key, $keys)) 262 { 263 $keys[] = $this->getOption('prefix').$key; 264 } 262 265 } 263 266 branches/1.4/lib/cache/sfMemcacheCache.class.php
r23925 r24607 259 259 else 260 260 { 261 $keys[] = $this->getOption('prefix').$key; 261 if (!in_array($this->getOption('prefix').$key, $keys)) 262 { 263 $keys[] = $this->getOption('prefix').$key; 264 } 262 265 } 263 266