Merge pull request #1764 from dtap-gmbh/issue1757
Using the parsed form parameter 'options' instead of looking for an U…
This commit is contained in:
commit
a5ba16db66
@ -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