Using the parsed form parameter 'options' instead of looking for an URL parameter.
This commit is contained in:
parent
89ed5365ea
commit
9aba9c2d48
@ -106,7 +106,7 @@ public class CreateProjectCommand extends Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
JSONObject optionObj = null;
|
JSONObject optionObj = null;
|
||||||
String optionsString = request.getParameter("options");
|
String optionsString = parameters.getProperty("options");
|
||||||
if (optionsString != null && !optionsString.isEmpty()) {
|
if (optionsString != null && !optionsString.isEmpty()) {
|
||||||
optionObj = ParsingUtilities.evaluateJsonStringToObject(optionsString);
|
optionObj = ParsingUtilities.evaluateJsonStringToObject(optionsString);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user