Skip to content

Commit

Permalink
kleine Korrekturen
Browse files Browse the repository at this point in the history
  • Loading branch information
schipplock committed Jan 1, 2024
1 parent e7668b5 commit 241a5fc
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/admin.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<%
if (request.getParameter("logoff") != null) {
session.invalidate();
response.sendRedirect("admin.jsp");
response.sendRedirect(request.getContextPath() + "/admin.jsp");
return;
}
%>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</c:if>

<c:if test="${post.getRowCount() eq 0}">
<c:redirect url="/no-post-for-you/" />
<c:redirect url="${settings:baseurl()}/no-post-for-you/" />
</c:if>

<sql:query var="postTitles" dataSource="postgres">
Expand Down

0 comments on commit 241a5fc

Please sign in to comment.