From 7108c15d16ec640a149306455824e206c916e2c2 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 29 Jun 2023 09:19:59 +0100 Subject: [PATCH] Bug 33720: Also flush in install Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy --- installer/install.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/installer/install.pl b/installer/install.pl index 87d2a9291b..8f53d212a2 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -32,10 +32,15 @@ use C4::Installer; use C4::Installer::PerlModules; use Koha; +use Koha::Caches; my $query = CGI->new; my $step = $query->param('step'); +# Flush memcached before we begin +Koha::Caches->get_instance('config')->flush_all; +Koha::Caches->get_instance('sysprefs')->flush_all; + my $language = $query->param('language'); my ( $template, $loggedinuser, $cookie ); -- 2.30.2