Changeset 20091 for trunk/wp-includes/cache.php
- Timestamp:
- 03/02/2012 09:57:03 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/cache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/cache.php
r20089 r20091 535 535 */ 536 536 protected function _exists($key, $group) { 537 return is _array( $this->cache[$group] ) && array_key_exists( $key, $this->cache[$group] );537 return isset( $this->cache[$group] ) && is_array( $this->cache[$group] ) && array_key_exists( $key, $this->cache[$group] ); 538 538 } 539 539
Note: See TracChangeset
for help on using the changeset viewer.