Index: apachesolr_search.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr_search.module,v
retrieving revision 1.1.2.6.2.111.2.8
diff -u -r1.1.2.6.2.111.2.8 apachesolr_search.module
--- apachesolr_search.module	23 Aug 2009 16:38:43 -0000	1.1.2.6.2.111.2.8
+++ apachesolr_search.module	26 Aug 2009 21:14:05 -0000
@@ -919,13 +919,16 @@
         }
         $new_keywords = strtr($query->get_query_basic(), $replacements);
 
-        $form['basic']['suggestion'] = array(
-          '#prefix' => '<div class="spelling-suggestions">',
-          '#suffix' => '</div>',
-          '#type' => 'item',
-          '#title' => t('Did you mean'),
-          '#value' => l($new_keywords, $query->get_path($new_keywords)),
-        );
+        // Show only if suggestion is different than current query.
+        if ($query->get_query_basic() != $new_keywords) {
+          $form['basic']['suggestion'] = array(
+            '#prefix' => '<div class="spelling-suggestions">',
+            '#suffix' => '</div>',
+            '#type' => 'item',
+            '#title' => t('Did you mean'),
+            '#value' => l($new_keywords, $query->get_path($new_keywords)),
+          );
+        }
       }
     }
   }

