https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16724
--- Comment #8 from M. Tompsett <[email protected]> --- Comment on attachment 52341 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=52341 Bug 16724: Fix link to the online documentation links Review of attachment 52341: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=16724&attachment=52341) ----------------------------------------------------------------- ::: help.pl @@ +69,5 @@ > if ( $help_version =~ m|^(\d+)\.(\d{2}).*$| ) { > my $version = $1; > my $major = $2; > + unless ( $major % 2 ) { $major-- }; > + $major = sprintf("%02d", $major); Why not put the sprintf on the next line and remove the interpolation too? :) This works too, though. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
