View | Details | Raw Unified | Return to bug 33720
Collapse All | Expand All

(-)a/installer/install.pl (-1 / +5 lines)
Lines 32-41 use C4::Installer; Link Here
32
use C4::Installer::PerlModules;
32
use C4::Installer::PerlModules;
33
33
34
use Koha;
34
use Koha;
35
use Koha::Caches;
35
36
36
my $query = CGI->new;
37
my $query = CGI->new;
37
my $step  = $query->param('step');
38
my $step  = $query->param('step');
38
39
40
# Flush memcached before we begin
41
Koha::Caches->get_instance('config')->flush_all;
42
Koha::Caches->get_instance('sysprefs')->flush_all;
43
39
my $language = $query->param('language');
44
my $language = $query->param('language');
40
my ( $template, $loggedinuser, $cookie );
45
my ( $template, $loggedinuser, $cookie );
41
46
42
- 

Return to bug 33720