It is probably an issue with the "featured" column in your database. Is that a varchar column or integer? You may need to update it to do an "=" search instead of includes and change the data type to integer instead of string.
Try updating line 53 from:
$searchWADAhorses_WADbSearch1->setSearch(array("type"=>"Edit", "comparison"=>"Includes", "join"=>"AND"), array("featured"), "s", "featured");
to:
$searchWADAhorses_WADbSearch1->setSearch(array("type"=>"Edit", "comparison"=>"=", "join"=>"AND"), array("featured"), "c", "featured");