Hi,
Restore everything and do this:
bender/main.php, find:
<h1><strong><?php _e('Latest Listings', 'bender') ; ?></strong></h1>
<?php if( osc_count_latest_items() == 0) { ?>
and replace it with:
<h1><strong><?php _e('Latest Listings', 'modern'); ?></strong></h1>
<?php $search = Search::newInstance();
View::newInstance()->_exportVariableToView('latestItems', $search->getLatestItems(osc_max_latest_items(), array(), true));
if( osc_count_latest_items() == 0) { ?>
Regards