summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a1a180)
raw | patch | inline | side by side (parent: 7a1a180)
author | gmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 30 Jul 2002 16:09:11 +0000 (16:09 +0000) | ||
committer | gmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 30 Jul 2002 16:09:11 +0000 (16:09 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@933 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 9e0af6b1b2b903c48ec5a255d8d66283b4f467e3..d0b188a935f828814623226f64d90c76c11c66b7 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.147 2002-07-30 08:22:38 richard Exp $
+# $Id: cgi_client.py,v 1.148 2002-07-30 16:09:11 gmcm Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
" %(action)s.")%{'action': 'registration'}
# re-open the database as "admin"
- self.opendb('admin')
-
+ if self.user != 'admin':
+ self.opendb('admin')
+
# create the new user
cl = self.db.user
try:
#
# $Log: not supported by cvs2svn $
+# Revision 1.147 2002/07/30 08:22:38 richard
+# Session storage in the hyperdb was horribly, horribly inefficient. We use
+# a simple anydbm wrapper now - which could be overridden by the metakit
+# backend or RDB backend if necessary.
+# Much, much better.
+#
# Revision 1.146 2002/07/30 05:27:30 richard
# nicer error messages, and a bugfix
#