diff --git a/cgi-bin/searchapi.cgi b/cgi-bin/searchapi.cgi
index 52e13fc..0e1957d 100755
--- a/cgi-bin/searchapi.cgi
+++ b/cgi-bin/searchapi.cgi
@@ -1,7 +1,8 @@
#!/bin/bash
# Configuration.
-STORAGE_PREFIX="/storage/md0"
+#STORAGE_PREFIX="/storage/md0"
+STORAGE_PREFIX="/data/mirrors"
LOCATE_DB="/tmp/mirrors.db"
DEF_RESULTS=500
MAX_RESULTS=3000
diff --git a/html/search.shtml b/html/search.shtml
index 9c58d5a..3a2ea77 100644
--- a/html/search.shtml
+++ b/html/search.shtml
@@ -84,7 +84,7 @@
$type = strtok ($result_line, " ");
$entry = strtok ("\0");
if ($type == "f" || $type == "l" || $type == "o") {
- print ('• ' . $entry . '
');
+ print ('• ' . $entry . ' (Visit containing directory)
');
$count++;
} elseif ($type == "d") {
print ('• ' . $entry . ' (Repeat search in this directory)
');