From 2df648d3182a172cdc523ede7a757adf2b3a1c19 Mon Sep 17 00:00:00 2001 From: Andrew Mc Cormack Date: Thu, 26 Oct 2017 15:35:08 +0100 Subject: [PATCH] fix config call namespace --- src/GTM.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GTM.php b/src/GTM.php index 0904cab..3a7d78e 100644 --- a/src/GTM.php +++ b/src/GTM.php @@ -36,7 +36,7 @@ class GTM public static function snippet() { return Controller::curr()->customise([ - 'ID' => Config::inst()->get('GTM', 'container_id'), + 'ID' => Config::inst()->get('CyberDuck\GTM\GTM', 'container_id'), 'Data' => GTMdata::getDataLayer() ])->renderWith('TagManager'); }