forked from lolcat/4get
Merge pull request 'split instances if string otherwise treat as array' (#4) from feature/fix_parse_instances into master
Reviewed-on: lolcat/4get#4
This commit is contained in:
commit
3f88069d23
|
@ -68,7 +68,8 @@ continue;
|
||||||
$output = $output . "\tconst " . $key . " = " . type_to_string(detect_captcha_dirs()) . ";\n";
|
$output = $output . "\tconst " . $key . " = " . type_to_string(detect_captcha_dirs()) . ";\n";
|
||||||
}
|
}
|
||||||
if($key === "INSTANCES") {
|
if($key === "INSTANCES") {
|
||||||
$output = $output . "\tconst " . $key . " = " . type_to_string(explode(',', $val)) . ";\n";
|
$instances_list = gettype($val) === "string" ? explode(",", $val) : $val;
|
||||||
|
$output = $output . "\tconst " . $key . " = " . type_to_string($instances_list) . ";\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue