Try looking in loop.php. It's in the third (lowest) of the three Loops in that file.
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
Try changing it to:
<?php if ( is_search() ) : // Only display excerpts for search. ?>
Statistics: Posted by keithb — November 18th, 2010, 1:12 am
<?php the_content(__('Read the rest of this entry »', 'smpl')); ?>
<?php
global $more; // Declare global $more (before the loop).
$more = 1; // Set (inside the loop) to display all content, including text below more.
the_content();
?>
Statistics: Posted by crushthenet — November 17th, 2010, 11:45 pm
Statistics: Posted by keithb — November 17th, 2010, 11:31 pm