Closedown
This commit is contained in:
@@ -62,7 +62,7 @@ public class NewTest extends javax.swing.JPanel {
|
||||
public static String TESTS_HELP_FILENAME = "help.html";
|
||||
public static String ALLOWED_CHARSET1 = "[a-z A-Z 0-9 . _ \\- \\[\\] () : , < > = \\$]*"; //les restricted set of chars
|
||||
public static String ALLOWED_CHARSET2 = "[a-z A-Z 0-9 . _ \\- \\[\\] () : , \\$]*"; //more restricted set of chars
|
||||
public static String ALLOWED_CHARSET3 = "[a-zA-Z0-9._\\-\\$,:]*"; //even more restricted set of chars
|
||||
public static String ALLOWED_CHARSET3 = "[a-zA-Z0-9._ \\- \\$ , :]*"; //even more restricted set of chars
|
||||
|
||||
/**
|
||||
* enumeration of table column indexes
|
||||
@@ -425,7 +425,7 @@ public class NewTest extends javax.swing.JPanel {
|
||||
String[] dsParameterAttributes = null;
|
||||
String[] dsParameters = parametersString.split(";");
|
||||
for (String sParameter : dsParameters) {
|
||||
dsParameterAttributes = sParameter.split(":");
|
||||
dsParameterAttributes = sParameter.split("&");
|
||||
if (dsParameterAttributes.length > 2) {
|
||||
mParameterAttributes = new HashMap();
|
||||
mParameterAttributes.put("value", (Object) dsParameterAttributes[1]);
|
||||
|
||||
Reference in New Issue
Block a user