Stopwords aren't filtered out
-
WordPress version: 3.5.1
WordPress SEO version: 1.4.7I did this:
Created a post with a title full of stopwordsI expected the plugin to do this:
Filter out the stopwordsInstead it did this:
Didn’t filter out the stopwordsThe bug is caused by a typo in
/wordpress-seo/admin/class-admin.php; line 528 is
$clean_slug_array = array_diff( explode( " ", $clean_slug ), $this->stopwords() );
but should be
$clean_slug_array = array_diff( explode( "-", $clean_slug ), $this->stopwords() );
(explode separator argument is a blank space but should be a hyphen)
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Stopwords aren't filtered out’ is closed to new replies.