Skip to content

Commit

Permalink
Use setSelectionAction instead of EventListAction. Move some of the s…
Browse files Browse the repository at this point in the history
…tate into the client (EventListPars).

Put the fetched events in the request scope rather than the form.
  • Loading branch information
douglm committed Oct 16, 2013
1 parent 71ec1c1 commit 611076e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,10 @@ public Boolean getBooleanReqPar(final String name) throws Throwable {
}

try {
if (reqpar.equalsIgnoreCase("yes")) {
reqpar = "true";
}

return Boolean.valueOf(reqpar);
} catch (Throwable t) {
return null; // XXX exception?
Expand Down

0 comments on commit 611076e

Please sign in to comment.