diff --git a/entity/WeblinkTag_entity/entityfields/keywordlinktags/children/containername_param/valueProcess.js b/entity/WeblinkTag_entity/entityfields/keywordlinktags/children/containername_param/valueProcess.js index 99b326480d0411aa466ca7dc716c1bee110fe1d5..7ede6af650ab26af0c1189c31e38f952e7f84ea3 100644 --- a/entity/WeblinkTag_entity/entityfields/keywordlinktags/children/containername_param/valueProcess.js +++ b/entity/WeblinkTag_entity/entityfields/keywordlinktags/children/containername_param/valueProcess.js @@ -1,2 +1,4 @@ +import("KeywordRegistry_basic"); import("system.result"); -result.string("LinkTags"); \ No newline at end of file + +result.string($KeywordRegistry.weblinkTags()); \ No newline at end of file diff --git a/process/KeywordRegistry_basic/process.js b/process/KeywordRegistry_basic/process.js index 2ce2fca15f40ffb407977edd922c27604f1f101b..b210ecbe0bb565ff10712fc44ea616ca6fe5b6d5 100644 --- a/process/KeywordRegistry_basic/process.js +++ b/process/KeywordRegistry_basic/process.js @@ -402,6 +402,8 @@ $KeywordRegistry.communicationChannelType$address = function(){return "COMMUNICA $KeywordRegistry.weblinkType = function(){return "WeblinkType";}; $KeywordRegistry.weblinkType$EMail = function() {return "WEBLINK_EMAIL"}; +$KeywordRegistry.weblinkTags = function(){return "WeblinkTags";}; + $KeywordRegistry.interestStatus = function(){return "InterestStatus";}; $KeywordRegistry.interestStatus$active = function(){return "INTEREST_ACTIVE";}; $KeywordRegistry.interestStatus$inactive = function(){return "INTEREST_INACTIVE";};