Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clj13001 committed May 1, 2017
1 parent e075359 commit 891fcaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified Senior Design.war
Binary file not shown.
6 changes: 3 additions & 3 deletions WebContent/html/webpages/redirect/ticketAdminRedirect.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ if(request.getParameter("approve") != null){
if(notificationPreferences){
NotificationQueue q = new NotificationQueue(client,"ticketConfirmations");
q.start();
response.sendRedirect("../administration/ticketApprove.jsp");
return;
}
response.sendRedirect("../administration/ticketApprove.jsp");
return;
}
/*
Expand All @@ -73,9 +73,9 @@ if(request.getParameter("reject") != null){
if(notificationPreferences){
NotificationQueue q = new NotificationQueue(client, "ticketRejections");
q.start();
}
response.sendRedirect("../administration/adminApprove.jsp");
return;
}
}
%>
</body>
Expand Down

0 comments on commit 891fcaa

Please sign in to comment.