aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2013-11-08 12:52:35 +0100
committerThomas Lenz <tlenz@iaik.tugraz.at>2013-11-08 12:52:35 +0100
commitf1bf406b5c17a2fd9ea4ffe43c559b5953173948 (patch)
tree7371d2d9265696e9533977b57bd68846f174ca3e /id/server/idserverlib/src/main/java
parent87600aff054cf60a1d6e272b0d993d852aaf4763 (diff)
downloadmoa-id-spss-f1bf406b5c17a2fd9ea4ffe43c559b5953173948.tar.gz
moa-id-spss-f1bf406b5c17a2fd9ea4ffe43c559b5953173948.tar.bz2
moa-id-spss-f1bf406b5c17a2fd9ea4ffe43c559b5953173948.zip
Bugix:
--fix an error with SLLayerTemplate and local BKU
Diffstat (limited to 'id/server/idserverlib/src/main/java')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/GetIdentityLinkFormBuilder.java8
1 files changed, 4 insertions, 4 deletions
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;
}