Ticket #20004: 20004.notices.diff
| File 20004.notices.diff, 506 bytes (added by duck_, 15 months ago) |
|---|
-
wp-includes/cache.php
534 534 * @access private 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 540 540 /**
