From: richard Date: Wed, 19 Feb 2003 03:59:44 +0000 (+0000) Subject: bah, missed another one. sigh X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=62481ce736619a3072f38ada6a447cc2dec83509;p=roundup.git bah, missed another one. sigh git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1529 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/cgi/templating.py b/roundup/cgi/templating.py index 001c1da..ffb5fc1 100644 --- a/roundup/cgi/templating.py +++ b/roundup/cgi/templating.py @@ -735,8 +735,8 @@ class HTMLItem(HTMLPermissions): class HTMLUser(HTMLItem): ''' Accesses through the *user* (a special case of item) ''' - def __init__(self, client, classname, nodeid): - HTMLItem.__init__(self, client, 'user', nodeid) + def __init__(self, client, classname, nodeid, anonymous=0): + HTMLItem.__init__(self, client, 'user', nodeid, anonymous) self._default_classname = client.classname # used for security checks