@@ -, +, @@ show even if install has only 1 branch --- C4/XSLT.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/XSLT.pm +++ a/C4/XSLT.pm @@ -179,7 +179,7 @@ sub get_xslt_sysprefs { # singleBranchMode was a system preference, but no longer is # we can retain it here for compatibility - my $singleBranchMode = Koha::Libraries->search->count == 1; + my $singleBranchMode = Koha::Libraries->search->count == 1 ? 1 : 0; $sysxml .= "$singleBranchMode\n"; $sysxml .= "\n"; --