##// END OF EJS Templates
hgweb: expand keyword search to full list of files
TK Soh -
r4323:7843528a default
parent child Browse files
Show More
@@ -265,7 +265,7 b' class hgweb(object):'
265 265 for q in qw:
266 266 if not (q in ctx.user().lower() or
267 267 q in ctx.description().lower() or
268 q in " ".join(ctx.files()[:20]).lower()):
268 q in " ".join(ctx.files()).lower()):
269 269 miss = 1
270 270 break
271 271 if miss:
General Comments 0
You need to be logged in to leave comments. Login now