Mercurial > p > roundup > code
diff roundup/cgi/templating.py @ 1417:472c21af7f69
fixed error in indexargs_url (thanks Patrick Ohly)
fixed getnode [SF#684531]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 12 Feb 2003 00:00:32 +0000 |
| parents | 8dc60d87ab42 |
| children | 90bb11eb40dc |
line wrap: on
line diff
--- a/roundup/cgi/templating.py Sat Feb 08 15:31:28 2003 +0000 +++ b/roundup/cgi/templating.py Wed Feb 12 00:00:32 2003 +0000 @@ -1526,7 +1526,7 @@ else: val = self.group[1] l.append(':group=%s'%val) - if self.filter and not args.has_key(':columns'): + if self.filter and not args.has_key(':filter'): l.append(':filter=%s'%(','.join(self.filter))) for k,v in self.filterspec.items(): if not args.has_key(k):
