Skip to content

Commit

Permalink
Quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clj13001 committed Apr 7, 2017
1 parent b56d511 commit 86a6a38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WebContent/html/webpages/ticketAdminRedirect.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<link rel = "stylesheet" type = "text/css" href = "../css/stylesheet.css">
<link rel = "shortcut icon" href = "../imgs/synchrony-financial-logo-dlpx_1.ico">
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal">
<%@ include file="navbar.html"%>
<%@ include file="navbar.jsp"%>
</nav>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion src/database/EmployeeQueries.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static User[] getAllUsers() throws SQLException, ClassNotFoundException{

//iterate result set
while(resultSet.next()){
users[counter] = new User(resultSet.getInt("Employee_ID"),resultSet.getInt("Location_ID"),resultSet.getString("Name"),resultSet.getString("Phone_Number"));
users[counter] = new User(resultSet.getInt("Employee_ID"),resultSet.getInt("Location_ID"),resultSet.getString("Name"),resultSet.getString("Phone_Number"),resultSet.getString("Email"),resultSet.getInt("Img_Index"));
counter++;
}

Expand Down

0 comments on commit 86a6a38

Please sign in to comment.