PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.7.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.7.0
2.7.0 2.6.0 2.5.0 2.4.0 2.3.0 2.2.0 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.32.0 1.31.0 1.30.0 1.29.0 1.28.0 1.27.0 1.26.0 1.25.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.10.0 All 48 releases
← All changes | includes/api/traits/trait-api-cache.php +5 -2 1.32.02.7.0 View file →
@@ -216,11 +216,14 @@
216 216 private function generate_cache_key(string $endpoint, array $params = [], ?int $user_id = null): string {
217 217 // Sort parameters for consistent key generation
218 218 ksort($params);
219 219
220 - // Build key components
220 + // Build key components. The prefix is stored with a trailing underscore
221 + // so the "_transient_{$this->cache_prefix}%" LIKE patterns above keep a
222 + // word boundary; implode() supplies the separator here, so trim it off
223 + // rather than emitting keys like `thinkrank_seo_analytics__totals_<md5>`.
221 224 $key_parts = [
222 - $this->cache_prefix,
225 + rtrim($this->cache_prefix, '_'),
223 226 $endpoint,
224 227 md5(wp_json_encode($params))
225 228 ];
226 229