diff options
Diffstat (limited to 'pdf-as-web')
-rw-r--r-- | pdf-as-web/src/main/webapp/jsp/SIGNATURBLOCK.jsp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf-as-web/src/main/webapp/jsp/SIGNATURBLOCK.jsp b/pdf-as-web/src/main/webapp/jsp/SIGNATURBLOCK.jsp index 72edfac..1c725d8 100644 --- a/pdf-as-web/src/main/webapp/jsp/SIGNATURBLOCK.jsp +++ b/pdf-as-web/src/main/webapp/jsp/SIGNATURBLOCK.jsp @@ -23,7 +23,7 @@ String sbKZ;
String sbID;
String sbMetaValue;
- if ("SIGNATURBLOCK_DE".equals(type)) {
+ if (type != null && type.indexOf("_DE") != -1) {
sbValue = "Signaturwert";
sbLabel = "signatur-logo_de-100.png";
sbMetaValue = "Informationen zur Prüfung der elektronischen Signatur und des Ausdrucks finden Sie unter: <input type=\"text\" name=\"vservice\" readonly=\"readonly\" disabled=\"disabled\" value=\"http://www.signaturpruefung.gv.at\" size=\"50\" maxlength=\"255\"/>";
|