Merged Dirk's fix_one_element_input_link_arrays branch

This commit is contained in:
Andrew Johnson
2020-10-22 10:14:10 -05:00
@@ -2331,8 +2331,7 @@ long dbParseLink(const char *str, short ftype, dbLinkInfo *pinfo)
}
/* Link may be an array constant */
if (pstr[0] == '[' && pstr[len-1] == ']' &&
(strchr(pstr, ',') || strchr(pstr, '"'))) {
if (pstr[0] == '[' && pstr[len-1] == ']') {
pinfo->ltype = CONSTANT;
return 0;
}