From 7d261651331af89ae6fe5df9ba1a603ccc8bd65f Mon Sep 17 00:00:00 2001 From: richard Date: Sat, 17 Jan 2004 01:59:33 +0000 Subject: [PATCH] fix re-enabling queries (sf bug 861940) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2041 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi/client.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 5929d92..2e2c67f 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.150 2004-01-15 00:01:15 richard Exp $ +# $Id: client.py,v 1.151 2004-01-17 01:59:33 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -1322,10 +1322,10 @@ You should then receive another email with the new password. qid = self.db.query.create(name=queryname, klass=self.classname, url=url) - # and add it to the user's query multilink - queries = self.db.user.get(self.userid, 'queries') - queries.append(qid) - self.db.user.set(self.userid, queries=queries) + # and add it to the user's query multilink + queries = self.db.user.get(self.userid, 'queries') + queries.append(qid) + self.db.user.set(self.userid, queries=queries) # commit the query change to the database self.db.commit() -- 2.30.2