Roundup Tracker - Issues

Message1351

Author marlonvdb
Recipients
Date 2004-07-09.13:14:31
Message-id
In-reply-to
Logged In: YES 
user_id=1080231

A solution could be:

Line 217:
    if not messageid:
Change into:
    if msgid is not None and not messageid:

Lines 255-256:
    # add the content
    m.appen(messages.safeget(msgid, 'content', ''))
Change into:
    # add the content
    if msgid is not None:
        m.appen(messages.safeget(msgid, 'content', ''))
History
Date User Action Args
2009-02-03 14:20:50adminlinkissue987933 messages
2009-02-03 14:20:50admincreate