From d84cd8e1984f44520c060f122f7098176e52dd3c Mon Sep 17 00:00:00 2001 From: "j.goderbauer" <j.goderbauer@adito.de> Date: Wed, 16 Jan 2019 09:46:27 +0100 Subject: [PATCH] ORG used wrong Container for storing image --- process/Org_lib/process.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/process/Org_lib/process.js b/process/Org_lib/process.js index 1651883a4c..2bc4452b08 100644 --- a/process/Org_lib/process.js +++ b/process/Org_lib/process.js @@ -17,7 +17,7 @@ function OrgUtils() {} */ OrgUtils.getImage = function(pOrgId, pDefaultText) { - return ImageUtils.get("PERS", "IMAGE", pOrgId, pDefaultText); + return ImageUtils.get("ORG", "IMAGE", pOrgId, pDefaultText); } /** @@ -29,7 +29,7 @@ OrgUtils.getImage = function(pOrgId, pDefaultText) */ OrgUtils.setImage = function(pOrgId, pImageDateBase64) { - return ImageUtils.set("PERS", "IMAGE", pOrgId, pImageDateBase64, "OrgImage", "Image of the organisation"); + return ImageUtils.set("ORG", "IMAGE", pOrgId, pImageDateBase64, "OrgImage", "Image of the organisation"); } /** @@ -40,5 +40,5 @@ OrgUtils.setImage = function(pOrgId, pImageDateBase64) */ OrgUtils.removeImage = function(pOrgId) { - return ImageUtils.remove("PERS", "IMAGE", pOrgId); + return ImageUtils.remove("ORG", "IMAGE", pOrgId); } -- GitLab