Code

. #565979 ] code error in hyperdb.Class.find
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 11 Jun 2002 05:02:37 +0000 (05:02 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 11 Jun 2002 05:02:37 +0000 (05:02 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@774 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/hyperdb.py

index b463dd93fd660bc2aad462346a28c28df8c246d8..6bddb5cfb4e6b793f58358b4531aa24f2d38e5ea 100644 (file)
@@ -64,6 +64,7 @@ Fixed:
    wasn't necessary (font specs, styles never used) and added a style for 
    message content
  . build htmlbase if tests are run using CVS checkout
+ . #565979 ] code error in hyperdb.Class.find
 
 2002-03-25 - 0.4.1
 Feature:
index 776704ca0bdfca7fcf4ebe08398fa3c1a6012e0d..78a0d7691702921e450d3f54ce277d255ccd2bda 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: hyperdb.py,v 1.66 2002-05-25 07:16:24 rochecompaan Exp $
+# $Id: hyperdb.py,v 1.67 2002-06-11 05:02:37 richard Exp $
 
 __doc__ = """
 Hyperdatabase implementation, especially field types.
@@ -798,6 +798,7 @@ class Class:
             if node.has_key(self.db.RETIRED_FLAG):
                 continue
             for propname, nodeid in propspec:
+                prop = self.properties[propname]
                 property = node[propname]
                 if isinstance(prop, Link) and nodeid == property:
                     l.append(id)
@@ -1157,6 +1158,9 @@ def Choice(name, db, *options):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.66  2002/05/25 07:16:24  rochecompaan
+# Merged search_indexing-branch with HEAD
+#
 # Revision 1.65  2002/05/22 04:12:05  richard
 #  . applied patch #558876 ] cgi client customization
 #    ... with significant additions and modifications ;)