Bug 23712: (QA follow-up) Silence two other warns too
Caused by undefined method: Use of uninitialized value in concatenation (.) or string at /usr/share/koha/Koha/Illrequest.pm line 857. Use of uninitialized value in concatenation (.) or string at /usr/share/koha/Koha/Illrequest.pm line 859. Test plan: Run test again Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
fcf149d325
commit
a473e231f7
1 changed files with 2 additions and 2 deletions
|
@ -854,9 +854,9 @@ sub expandTemplate {
|
|||
my $backend_dir = $self->_config->backend_dir;
|
||||
my $backend_tmpl = join "/", $backend_dir, $backend;
|
||||
my $intra_tmpl = join "/", $backend_tmpl, "intra-includes",
|
||||
$params->{method} . ".inc";
|
||||
( $params->{method}//q{} ) . ".inc";
|
||||
my $opac_tmpl = join "/", $backend_tmpl, "opac-includes",
|
||||
$params->{method} . ".inc";
|
||||
( $params->{method}//q{} ) . ".inc";
|
||||
# Set files to load
|
||||
$params->{template} = $intra_tmpl;
|
||||
$params->{opac_template} = $opac_tmpl;
|
||||
|
|
Loading…
Reference in a new issue