In my Magento module, I want to change a config option for just one run - the change should not be saved in the database.
It is only to change it with certain conditions during runtime, so that all subsequent core calls etc use that option.
I know you can use something like Mage::getConfig()->saveConfig(...)
, but that actually saves the change in the database.
I'm using Magento 1.5
.
Is that in any way possible?