- Issue created by @RandalV
- Merge request !107Issue #3498700 by randalv: Default tag id and additional IDs no longer return valid IDs → (Open) created by RandalV
In
#3450154
🐛
Missing GTM ID causes PHP warning: passing null to parameter #2 of preg_match deprecated in TagContainer.php
Fixed
, the patch added `=== 0` to two of the preg_match comparisons which essentially wrecked this functionality.
In our case, this fails in the js code that does this:
if (additionalConfigInfo.length === 0) {
gtag('config', config.tagId);
} else {
gtag('config', config.tagId, additionalConfigInfo);
}
Because the `config.tagId` value is empty.
This should be visible as soon as you configure google tag with the google analytics debugger chrome plugin.
Simply remove the `=== 0` in the comparison so this functionality works again like before.
Active
2.0
Code