@@ -, +, @@ is not populated - In current master, drop the DB - Load OPAC and Intranet - Apply the patch - Load the OPAC - Load Intranet - Sign off :-D --- C4/Context.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/C4/Context.pm +++ a/C4/Context.pm @@ -527,7 +527,8 @@ sub preference { if ( defined $ENV{"OVERRIDE_SYSPREF_$var"} ) { $value = $ENV{"OVERRIDE_SYSPREF_$var"}; } else { - my $syspref = Koha::Config::SysPrefs->find( lc $var ); + my $syspref; + eval { $syspref = Koha::Config::SysPrefs->find( lc $var ) }; $value = $syspref ? $syspref->value() : undef; } --