WordPress version: 3.5.1
WordPress SEO version: 1.4.7
I did this:
Created a post with a title full of stopwords
I expected the plugin to do this:
Filter out the stopwords
Instead it did this:
Didn't filter out the stopwords
The 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)