I need to remove the cache when a user change language, but I get an error message.
$smarty = new Smarty;
//$smarty->force_compile = true;
$smarty->debugging = true;
$smarty->caching = false;
$smarty->cache_lifetime = 120;
if (isset($_COOKIE['country']))
{
$country = $_COOKIE['country'];
$language = "eng";
if ($country == "NO"){
$language = "nor";
$smarty->clear_all_cache();
}
}
I also get this message when i use clear_assign:
function call 'clear_assign' is unknown or deprecated