We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acdf847 commit 57adc63Copy full SHA for 57adc63
src/libraries/Event.php
@@ -220,7 +220,8 @@ public function refresh() {
220
$cache_val = Common::$cache->get( $cache_key );
221
222
if ( $cache_val !== false ) {
223
- return self::normalize( unserialize( $cache_val ) , $this );
+ $cache_val = unserialize( $cache_val );
224
+ return self::normalize( $cache_val , $this );
225
}
226
227
if ( !isset( Common::$database ) ) {
0 commit comments