Index: handlers/apachesolr_views_handler_field_snippet.inc
===================================================================
--- handlers/apachesolr_views_handler_field_snippet.inc (revision 2086)
+++ handlers/apachesolr_views_handler_field_snippet.inc (working copy)
@@ -65,11 +65,11 @@
   function render($doc) {
     $response = apachesolr_static_response_cache();
     $hl_fl = $this->query->get_param('hl.fl');
-    if (is_null($hl_fl)) {
+    if (empty($hl_fl)) {
       $hl_fl = 'body';
     }
     $snippet = isset($response->highlighting->{$doc->id}->$hl_fl) ? theme('apachesolr_search_snippets', $doc, $response->highlighting->{$doc->id}->$hl_fl) : $doc->body;

     return $snippet;
   }
