Skip to content

Commit

Permalink
Quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
clj13001 committed Apr 7, 2017
1 parent 70f9441 commit 36ab9f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WebContent/html/webpages/adminApprove.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

<body>
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal">
<%@ include file="navbar.html"%>
<%@ include file="navbar.jsp"%>
</nav>

<!-- Modal for choosing ticket action. -->
Expand Down Expand Up @@ -140,11 +140,11 @@
Ticket[] tickets = query.getTickets();
User[] users = EmployeeQueries.getAllUsers();
Location[] locations = LocationQueries.getAllLocations();
ListedDevice[] devices = DeviceQueries.getAllDevices();
Device[] devices = DeviceQueries.getAllDevices();
String ticketStr = Ticket.arrayToString(tickets);
String userStr = User.arrayToString(users);
String locationStr = Location.arrayToString(locations).replace("'","\\'");
String deviceStr = ListedDevice.arrayToString(devices);
String deviceStr = Device.arrayToString(devices);
%>

<script>
Expand Down

0 comments on commit 36ab9f9

Please sign in to comment.