Quote:
Originally Posted by delicjous
If it is ok for you, I will upload a similar mod in the next days/weeks that only delete the cache of the nodes with bbcodes. So the cache works almost normal... and if the option "Cache BBCode Render by Usergroup" is enabled you do not need to delete the cache... so I would select that option to find out if it is necessary to delete the cache of the post.
|
@delicjous, thank you for the great suggestion.
I will apply and update the option you said.
Thanks again.
I did as you suggested
PHP Code:
protected function __construct($nodeid)
{
if (vB::getDatastore()->getOption('cachebbcodebyusergroup')==0)
{
vB_Cache::resetCache();
vB::getDatastore()->resetCache();
}
}