PluginProbe
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses / 2.10.01
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses v2.10.01
2.11.0 2.10.0 2.10.01 2.9.1 2.9.0 2.8.1 2.8.0 2.7.7 2.7.5 2.7.0 2.6.01 2.6.0 2.5.0 2.4.01 trunk 1.0.90 1.0.91 1.0.92 1.0.93 1.0.94 1.0.95 1.0.96 1.0.97 1.0.98 1.0.99 All 78 releases
← All changes | vendor/wpfluent/framework/src/WPFluent/Cache/Cache.php +4 -0 2.4.012.10.01 View file →
@@ -84,8 +84,12 @@
84 84 * @return mixed
85 85 */
86 86 public static function get($key)
87 87 {
88 + // Initialize so wp_cache_get's by-reference $found arg doesn't
89 + // trigger a PHP 8.1+ "writing to undefined variable" deprecation.
90 + $found = null;
91 +
88 92 $key = static::key($key);
89 93
90 94 if (static::isPersistent()) {
91 95 $value = wp_cache_get($key, static::cacheGroup(), false, $found);