Skip to content

Commit

Permalink
FIX form a ction form internet explorer 11
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Dec 1, 2017
1 parent 69e9ca2 commit 1a42e95
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -24,7 +24,7 @@
<sonar.skip>true</sonar.skip>
<java.version>1.8</java.version>
<spring.version>4.3.3.RELEASE</spring.version>
<jada.version>5.0.51</jada.version>
<jada.version>5.0.52-SNAPSHOT</jada.version>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<sigla.build.number>${maven.build.timestamp}</sigla.build.number>
<slf4j.version>1.7.21</slf4j.version>
Expand Down
Expand Up @@ -32,7 +32,7 @@
</tr>
</table>
</fieldset>
<fieldset class="card fieldset ">
<fieldset class="card fieldsetc">
<legend class="GroupLabel card-header text-primary p-0 pl-2">Rettifiche</legend>
<table cellpadding="5px">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion sigla-web/src/main/webapp/util/business_process_busy.jsp
Expand Up @@ -14,7 +14,7 @@
restoreWorkspace();
</script>

<form name="mainForm" action="FormAction.do">
<form name="mainForm" action="FormAction.do" action-ng="FormAction.do">
<% BusinessProcess bp = BusinessProcess.getBusinessProcess(request);
BusinessProcess.encode(bp,pageContext); %>
<input type="hidden" name="comando" value="doDefault">
Expand Down
2 changes: 1 addition & 1 deletion sigla-web/src/main/webapp/util/form_albero.jsp
Expand Up @@ -29,7 +29,7 @@ function selezionaRiga(riga) {
<%
SelezionatoreAlberoBP bp = (SelezionatoreAlberoBP)BusinessProcess.getBusinessProcess(request);
%>
<FORM name=mainForm action="Seleziona.do" method=post>
<FORM name=mainForm action="Seleziona.do" action-ng="Seleziona.do" method=post>
<input type=hidden name="comando">
<input type=hidden name="riga">
<%
Expand Down
2 changes: 1 addition & 1 deletion sigla-web/src/main/webapp/util/form_option.jsp
Expand Up @@ -18,7 +18,7 @@
</head>
<title>Informazione</title>
<body class="Workspace">
<FORM name="mainForm" action="Option.do" method=post onSubmit="return disableDblClick()">
<FORM name="mainForm" action="Option.do" action-ng="Option.do" method=post onSubmit="return disableDblClick()">
<input type=hidden name="comando">
<%
OptionBP bp = (OptionBP)BusinessProcess.getBusinessProcess(request);
Expand Down
2 changes: 1 addition & 1 deletion sigla-web/src/main/webapp/util/page_expired.jsp
Expand Up @@ -14,7 +14,7 @@
restoreWorkspace();
</script>

<form name="mainForm" action="FormAction.do">
<form name="mainForm" action="FormAction.do" action-ng="FormAction.do">
<% BusinessProcess bp = BusinessProcess.getBusinessProcess(request);
BusinessProcess.encode(bp,pageContext); %>
<input type="hidden" name="comando" value="doDefault">
Expand Down
2 changes: 1 addition & 1 deletion sigla-web/src/main/webapp/util/uncaught_exception.jsp
Expand Up @@ -61,7 +61,7 @@ function showStackTrace() {
</head>

<body>
<form name="mainForm" action="FormAction.do">
<form name="mainForm" action="FormAction.do" action-ng="FormAction.do">
<% BusinessProcess.encode(bp,pageContext); %>
<input type="hidden" name="comando" value="doDefault">
<P align=center>
Expand Down

0 comments on commit 1a42e95

Please sign in to comment.