Config changes in 5.7.4?
Permalink
Hi,
I've worked on some add-ons and created them for/in 5.7.3.x. Within the code I use the file config for, well..., config data.
I noticed that something has changed. At least, I think so.
I used to get some config values from the "generated override" config.php with something like:
Somehow, I now need to include 'config' else it will look in de some.php file.
Am I wrong and was it always like this or has something changed (5.7.4 update?)
SnefIT
[\code]
I've worked on some add-ons and created them for/in 5.7.3.x. Within the code I use the file config for, well..., config data.
I noticed that something has changed. At least, I think so.
I used to get some config values from the "generated override" config.php with something like:
$cfg->get('some.value.that.we.need');
Somehow, I now need to include 'config' else it will look in de some.php file.
$cfg->get('config.some.value.that.we.need');
Am I wrong and was it always like this or has something changed (5.7.4 update?)
SnefIT
[\code]
Are you trying to store and get values from the Config table in packages?