If anyone else has this problem
This is an issue with bbPress, it loads the content-search.php template from the theme directory, which is wrong. An easy fix is to rename the content-search.php file in your theme directory to content-searchresults.php and then change this line in search.php:
get_template_part(‘content’, ‘search’);
to this:
get_template_part(‘content’, ‘searchresults’);
A big thanks to Trevor over on the Artisteer Forums