##// END OF EJS Templates
webcommands: fix increments lost by 894875eae49b
Andrew Beekhof -
r6659:bc553c6d default
parent child Browse files
Show More
@@ -129,7 +129,7 b' def _search(web, tmpl, query):'
129 if miss:
129 if miss:
130 continue
130 continue
131
131
132 count = 1
132 count += 1
133 n = ctx.node()
133 n = ctx.node()
134 showtags = webutil.showtag(web.repo, tmpl, 'changelogtag', n)
134 showtags = webutil.showtag(web.repo, tmpl, 'changelogtag', n)
135
135
@@ -362,7 +362,7 b' def summary(web, req, tmpl):'
362 if k == "tip": # skip tip
362 if k == "tip": # skip tip
363 continue
363 continue
364
364
365 count = 1
365 count += 1
366 if count > 10: # limit to 10 tags
366 if count > 10: # limit to 10 tags
367 break
367 break
368
368
General Comments 0
You need to be logged in to leave comments. Login now