We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8fb706 commit 52fcb7aCopy full SHA for 52fcb7a
2 files changed
classes/Form/ConfigurationForm.php
@@ -158,7 +158,7 @@ public function generate()
158
$helper->fields_value['GA_CROSSDOMAIN_ENABLED'] = \Configuration::get('GA_CROSSDOMAIN_ENABLED');
159
$helper->fields_value['GA_ANONYMIZE_ENABLED'] = \Configuration::get('GA_ANONYMIZE_ENABLED');
160
161
- return $helper->generate($fields_form);
+ return $helper->generateForm($fields_form);
162
}
163
164
/**
classes/Hook/HookDisplayHeader.php
@@ -81,7 +81,10 @@ public function run()
81
)
82
);
83
84
- return $this->module->display(__FILE__, 'ps_googleanalytics.tpl');
+ return $this->module->display(
85
+ $this->module->getLocalPath().$this->module->name,
86
+ 'ps_googleanalytics.tpl'
87
+ );
88
89
90
0 commit comments