certain common prefs (language, template, ...) require the session to be re-created, happend formerly always, but it now optimized away ;-)

This commit is contained in:
Ralf Becker 2010-11-17 13:36:08 +00:00
parent 3a119867b7
commit 19e6251df9

View File

@ -251,6 +251,12 @@
$GLOBALS['egw']->preferences->save_repository(True,$type);
// certain common prefs (language, template, ...) require the session to be re-created
if ($appname == 'common')
{
egw::invalidate_session_cache();
}
return $this->prefs;
}