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/ai/class-metadata-generator.php +4 -3 2.2.02.7.0 View file →
@@ -202,11 +202,12 @@
202 202 // Trim and limit length for AI processing
203 203 $content = trim($content);
204 204 $max_length = 4000; // Reasonable limit for AI processing
205 205
206 - if (strlen($content) > $max_length) {
207 - $content = substr($content, 0, $max_length) . '...';
208 - }
206 + // strlen()/substr() count BYTES: on Thai or CJK this handed the model a
207 + // third of the intended content, and cut the last character in half so
208 + // the payload carried an invalid UTF-8 sequence (#687).
209 + $content = \ThinkRank\Core\Seo_Text::trim_to_length($content, $max_length);
209 210
210 211 return $content;
211 212 }
212 213