diff --git a/frontend/php/include/search/general.php b/frontend/php/include/search/general.php
index 02335de..b838301 100644
--- a/frontend/php/include/search/general.php
+++ b/frontend/php/include/search/general.php
@@ -310,7 +310,7 @@ function search_failed ()
   $no_rows = 1 ;
   search_send_header();
   print '<span class="warn">';
-  print _("None found. Please note that only search words of more than three characters are valid.");
+  print _("None found. Please note that only search words of more than two characters are valid.");
   print '</span>';
   print db_error();
 }
diff --git a/frontend/php/search/index.php b/frontend/php/search/index.php
index d77cff4..d1f7008 100644
--- a/frontend/php/search/index.php
+++ b/frontend/php/search/index.php
@@ -50,14 +50,15 @@ if ($type_of_search == 'soft')
       # No result? Stop here.
       search_failed();
     }
-  elseif (($rows == 1) && ($GLOBALS['offset'] == 0))
+/*  // Some users had noted this was a little much and would rather have it display the lone result.
+    elseif (($rows == 1) && ($GLOBALS['offset'] == 0))
     {
       # Only one result? Redirect, but only if this is the first
       # page to be displayed. Otherwise, if the last page contains
       # just one row, the user will be redirected.
       $project = db_result($result, 0, 'unix_group_name');
       header("Location: ../projects/$project");
-    }
+    }*/
   else
     {
       # More results? Print them in the respect of max_rows setting.
