[Legacy] Symfony Cache - Update System Config after save

This commit is contained in:
Jack Anderson 2023-11-13 15:10:38 +00:00
parent 9db4d9d14a
commit 133724db10

View file

@ -325,13 +325,17 @@ class Configurator

public function saveConfig()
{

if ($this->saveImages() === false) {
return false;
}


$this->populateFromPost();
$this->handleOverride();
$this->clearCache();
require_once "include/portability/Services/Cache/CacheManager.php";
(new CacheManager())->markAsNeedsUpdate('rebuild_all');
}

public function readOverride()