diff --git a/product/ERP5Type/Core/RoleInformation.py b/product/ERP5Type/Core/RoleInformation.py index 86c64fb1896cc4d9b7e66f51e5a8270005ae6015..ad078bbf3bcb251114d964c4593f548ff7fcdff6 100644 --- a/product/ERP5Type/Core/RoleInformation.py +++ b/product/ERP5Type/Core/RoleInformation.py @@ -92,11 +92,10 @@ class RoleInformation(XMLObject): security.declareProtected(AccessContentsInformation, 'PrincipiaSearchSource') def PrincipiaSearchSource(self): """Return keywords for "Find" tab in ZMI""" - search_source_list = [self.getReference(), - self.getTitle(), - self.getDescription(), - self.getConditionText(), - self.getRoleBaseCategoryScriptId()] + search_source_list = [self.getTitle(), + self.getDescription(), + self.getConditionText(), + self.getRoleBaseCategoryScriptId()] return ' '.join(filter(None, search_source_list)) security.declarePrivate("getLocalRolesFor")