@@ -2146,7 +2146,7 @@ |
||
2146 | 2146 | $tempCommaReplacementString = '###KASPER###'; |
2147 | 2147 | |
2148 | 2148 | // replace every "," wrapped in "()" by a "unique" string |
2149 | - $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function ($result) use ($tempCommaReplacementString) { |
|
2149 | + $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function($result) use ($tempCommaReplacementString) { |
|
2150 | 2150 | return str_replace(',', $tempCommaReplacementString, $result[0]); |
2151 | 2151 | }, $string) ?? ''; |
2152 | 2152 |