From f1bf406b5c17a2fd9ea4ffe43c559b5953173948 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 8 Nov 2013 12:52:35 +0100 Subject: Bugix: --fix an error with SLLayerTemplate and local BKU --- .../moa/id/auth/builder/GetIdentityLinkFormBuilder.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'id/server/idserverlib/src/main/java') diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/GetIdentityLinkFormBuilder.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/GetIdentityLinkFormBuilder.java index 7753b4011..1e564a55f 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/GetIdentityLinkFormBuilder.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/GetIdentityLinkFormBuilder.java @@ -156,14 +156,14 @@ public class GetIdentityLinkFormBuilder extends Builder { } if (MiscUtil.isNotEmpty(appletheigth)) - htmlForm = replaceTag(htmlForm, APPLETHEIGHT_TAG, appletheigth, true, ALL); + htmlForm = replaceTag(htmlForm, APPLETHEIGHT_TAG, appletheigth, false, ALL); else - htmlForm = replaceTag(htmlForm, APPLETHEIGHT_TAG, "160", true, ALL); + htmlForm = replaceTag(htmlForm, APPLETHEIGHT_TAG, "160", false, ALL); if (MiscUtil.isNotEmpty(appletwidth)) - htmlForm = replaceTag(htmlForm, APPLETWIDTH_TAG, appletwidth, true, ALL); + htmlForm = replaceTag(htmlForm, APPLETWIDTH_TAG, appletwidth, false, ALL); else - htmlForm = replaceTag(htmlForm, APPLETWIDTH_TAG, "250", true, ALL); + htmlForm = replaceTag(htmlForm, APPLETWIDTH_TAG, "250", false, ALL); return htmlForm; } -- cgit v1.2.3