Closed (fixed)
Project:
Counter
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Jun 2016 at 09:20 UTC
Updated:
25 Nov 2018 at 07:01 UTC
Jump to comment: Most recent
During saving Configuration for Advanced and Initial settings Error is given. Basic Works fine.
Checked the code.
In CounterSettingsAdvanced.php and CounterSettingsInitial.php Change the following lines.
protected function getEditableConfigNames() {
return [
'counter.advanced',
];
}
and
protected function getEditableConfigNames() {
return [
'counter.initial',
];
}
to
protected function getEditableConfigNames() {
return [
'counter.settings',
];
}
Comments
Comment #3
jrwilson commentedSame issue.