Skip to content

Commit

Permalink
correcao nas urls
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaneppele committed Feb 26, 2014
1 parent 8282ddd commit f0d00c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/espetaculos/lista.jsp
Expand Up @@ -54,7 +54,7 @@
<td>${espetaculo.nome }</td>
<td>${espetaculo.descricao }</td>
<td>${espetaculo.tipo }</td>
<td><a href="/espetaculo/${espetaculo.id }/sessoes">Criar sessões</a></td>
<td><a href="<c:url value="/espetaculo/${espetaculo.id}/sessoes"/>">Criar sessões</a></td>
</tr>
</c:forEach>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/espetaculos/sessoes.jsp
Expand Up @@ -4,7 +4,7 @@
</head>
<body>
<h2>Criar novas sessões</h2>
<form action="/espetaculo/${espetaculo.id}/sessoes" method="post">
<form action="<c:url value="/espetaculo/${espetaculo.id}/sessoes"/>" method="post">
<label for="inicio">Início</label>
<input type="text" name="inicio" id="inicio"/>

Expand Down

0 comments on commit f0d00c9

Please sign in to comment.