summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 239f320)
raw | patch | inline | side by side (parent: 239f320)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 24 May 2002 02:09:24 +0000 (02:09 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 24 May 2002 02:09:24 +0000 (02:09 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@758 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi_client.py | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index 6cc177d37f89bbaa10a3ad1b8ba49c7b4e693311..fcefab93ebe2ff7c09d708446cd13f6ebfa0ce0a 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: cgi_client.py,v 1.123 2002-05-22 05:04:13 richard Exp $
+# $Id: cgi_client.py,v 1.124 2002-05-24 02:09:24 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
# fix up the CURRENT USER if needed (handle None too since that's
# the old flag value)
if l in (None, 'CURRENT USER'):
+ if not self.user:
+ continue
l = [self.db.user.lookup(self.user)]
# add
#
# $Log: not supported by cvs2svn $
+# Revision 1.123 2002/05/22 05:04:13 richard
+# Oops
+#
# Revision 1.122 2002/05/22 04:12:05 richard
# . applied patch #558876 ] cgi client customization
# ... with significant additions and modifications ;)