--- LikePages.py.orig	2008-03-16 12:29:48.000000000 -0700
+++ LikePages.py	2008-06-26 16:16:03.000000000 -0700
@@ -107,6 +107,10 @@
         if not (page.exists() and request.user.may.read(name)):
             del matches[name]
 
+    plural = u"%ss" % pagename
+    if plural in pages:
+        close_matches[plural] = 9
+
     # Finally, merge both dicts
     matches.update(close_matches)
 
@@ -204,6 +208,7 @@
 def showMatches(pagename, request, start, end, matches, show_count=True):
     keys = matches.keys()
     keys.sort()
+    _showMatchGroup(request, matches, keys, 9, pagename, show_count)
     _showMatchGroup(request, matches, keys, 8, pagename, show_count)
     _showMatchGroup(request, matches, keys, 4, "%s/..." % pagename, show_count)
     _showMatchGroup(request, matches, keys, 3, "%s...%s" % (start, end), show_count)
