Changeset 2394890
- Timestamp:
- 10/07/2020 12:45:07 AM (5 years ago)
- Location:
- open-wp-seo
- Files:
-
- 2 edited
-
tags/1.0.1/modules/open-wp-seo-content.php (modified) (1 diff)
-
trunk/modules/open-wp-seo-content.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
open-wp-seo/tags/1.0.1/modules/open-wp-seo-content.php
r2205467 r2394890 22 22 foreach ($content_words as $content_word) { 23 23 $content_word = $this->remove_special_characters($content_word); 24 if (levenshtein( $title_word, $content_word) < 4) {24 if (levenshtein(substr($title_word, 0, 255), substr($content_word, 0, 255)) < 4) { 25 25 $title_words_in_content++; 26 26 break; -
open-wp-seo/trunk/modules/open-wp-seo-content.php
r2205467 r2394890 22 22 foreach ($content_words as $content_word) { 23 23 $content_word = $this->remove_special_characters($content_word); 24 if (levenshtein( $title_word, $content_word) < 4) {24 if (levenshtein(substr($title_word, 0, 255), substr($content_word, 0, 255)) < 4) { 25 25 $title_words_in_content++; 26 26 break;
Note: See TracChangeset
for help on using the changeset viewer.