IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/wp-admin/includes/class-wp-community-events.php b/src/wp-admin/includes/class-wp-community-events.php
a
|
b
|
|
352 | 352 | * on success, false on failure. |
353 | 353 | */ |
354 | 354 | public function get_cached_events() { |
355 | | $cached_response = get_site_transient( $this->get_events_transient_key( $this->user_location ) ); |
| 355 | $cached_response = get_site_transient( $this->get_events_transient_key( $this->user_location ) ) |
| 356 | ? get_site_transient( $this->get_events_transient_key( $this->user_location ) ) : false; |
356 | 357 | |
357 | 358 | if ( isset( $cached_response['events'] ) ) { |
358 | 359 | $cached_response['events'] = $this->trim_events( $cached_response['events'] ); |