--- a/app/soc/logic/models/home_settings.py Thu Nov 20 18:50:30 2008 +0000
+++ b/app/soc/logic/models/home_settings.py Thu Nov 20 19:43:31 2008 +0000
@@ -42,18 +42,18 @@
"""See base.Logic.getKeyNameValues.
"""
- return [entity.partial_path, entity.link_id]
+ return [entity.scope_path, entity.link_id]
def getKeyValuesFromFields(self, fields):
"""See base.Logic.getKeyValuesFromFields.
"""
- return [fields['partial_path'], fields['link_id']]
+ return [fields['scope_path'], fields['link_id']]
def getKeyFieldNames(self):
"""See base.Logic.getKeyFieldNames.
"""
- return ['partial_path', 'link_id']
+ return ['scope_path', 'link_id']
logic = Logic()