Ad blocker detected: Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by disabling your ad blocker on our website.
if (preg_match("/(.*?)" . preg_quote($script_queries["output_delimeter"]) . "(.*)/", $script_data_array[$i], $matches)) {
matches on first occurence ('non-greedy') and thus allowing "xml_delimeter" to appear in the field itself (useful for eg. interface description that has ! and possibly all other characters)...
Works for me
That's not a correct fix.
In case the "delimiter" shows up in the index, your modification won't work. Honestly, the current code does not work in that case, either. But we need a different fix, then
R.