Move from object references to IDs

svn: r2822
This commit is contained in:
Don Allingham
2004-02-14 05:40:30 +00:00
parent 0192477335
commit 7ed2f0551e
110 changed files with 5349 additions and 5292 deletions

View File

@@ -89,8 +89,6 @@ _bkitems = []
#-------------------------------------------------------------------------
import Relationship
_relcalc_task = Relationship.get_relationship
#-------------------------------------------------------------------------
#
#
@@ -545,10 +543,8 @@ def register_relcalc(func, languages):
except:
pass
def relationship_function():
global _relcalc_task
return _relcalc_task
def relationship_function(db):
return Relationship.RelationshipCalculator(db)
#-------------------------------------------------------------------------
#