Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
adapt
ace
Commits
7cf6660c
Commit
7cf6660c
authored
Aug 09, 2016
by
Michael Ritter
Browse files
Use an empty string instead of '/' to route properly
parent
7649f903
Changes
1
Hide whitespace changes
Inline
Side-by-side
ace-am/src/main/java/edu/umiacs/ace/monitor/access/StatusServlet.java
View file @
7cf6660c
...
...
@@ -108,7 +108,7 @@ public class StatusServlet extends EntityManagerServlet {
String
collection
=
getParameter
(
request
,
PARAM_COLLECTION_LIKE
,
null
);
String
state
=
getParameter
(
request
,
PARAM_STATE
,
null
);
// String date = getParameter(request, PARAM_GROUP, null);
PageBean
pb
=
new
PageBean
((
int
)
page
,
count
,
"
/
"
);
PageBean
pb
=
new
PageBean
((
int
)
page
,
count
,
""
);
long
offset
=
page
*
count
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment