Skip to content
This repository has been archived by the owner on Oct 24, 2018. It is now read-only.

Commit

Permalink
Fix a url link bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdminNUS authored and AdminNUS committed Jun 15, 2011
1 parent 9f999f7 commit a2629ba
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -173,11 +173,11 @@ protected String listEPeople(@RequestAttribute Context context, ModelMap model,

String jumpLink;
if (search != null && !search.equals("")) {
jumpLink = request.getContextPath() + "/administer/browse-epeople?multiple=" + multiple + "&sortby=" + sortByParam + "&first=" + first + "&search=" + search + "&offset=";
jumpLink = request.getContextPath() + "/admin/eperson/browse-epeople?multiple=" + multiple + "&sortby=" + sortByParam + "&first=" + first + "&search=" + search + "&offset=";
} else {
jumpLink = request.getContextPath() + "/administer/browse-epeople?multiple=" + multiple + "&sortby=" + sortByParam + "&first=";
jumpLink = request.getContextPath() + "/admin/eperson/browse-epeople?multiple=" + multiple + "&sortby=" + sortByParam + "&first=";
}
String sortLink = request.getContextPath() + "/administer/browse-epeople?multiple=" + multiple + "&first=" + first + "&sortby=";
String sortLink = request.getContextPath() + "/admin/eperson/browse-epeople?multiple=" + multiple + "&first=" + first + "&sortby=";

model.addAttribute("sortby", Integer.valueOf(sortBy));
model.addAttribute("first", Integer.valueOf(first));
Expand Down

0 comments on commit a2629ba

Please sign in to comment.