Skip to content
Snippets Groups Projects
Commit 972594cb authored by totten's avatar totten
Browse files

CRM_Upgrade_Form::doFinish() - Narrower call to session-reset

The main call(s) to `rebuildMenuAndCaches()` do clear out most caches.  It's
_just_ the session that has been skipped.
parent 5e15ba69
Branches
Tags
No related merge requests found
......@@ -841,7 +841,8 @@ SET version = '$version'
* @return bool
*/
public static function doFinish(): bool {
CRM_Core_Config::singleton()->cleanupCaches(TRUE);
$session = CRM_Core_Session::singleton();
$session->reset(2);
return TRUE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment