https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17935 --- Comment #2 from M. Tompsett <mtompset@hotmail.com> --- Comment on attachment 59209 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=59209 Bug 17935: Adjust some POD lines, fix a few typos Review of attachment 59209: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=17935&attachment=59209) ----------------------------------------------------------------- Eyeballs well. ::: Koha/AuthorisedValue.pm @@ +135,2 @@
+my $description = $av->opac_description();
Yep. ::: Koha/Plugins.pm @@ +54,4 @@
This will return a list of all available plugins, optionally limited by method or metadata value.
+ my @plugins = Koha::Plugins::GetPlugins({
Yikes! Good catch. ::: misc/migration_tools/rebuild_zebra.pl @@ +187,4 @@
};
# Protect again simultaneous update of the zebra index by using a lock file. +# Create our own lock directory if it is missing. This should be created
its vs "it is" -- nice fix. @@ +187,5 @@
};
# Protect again simultaneous update of the zebra index by using a lock file. +# Create our own lock directory if it is missing. This should be created +# by koha-zebra-ctl.sh or at system installation. If the desired directory
Yep, 2 spaces after a period is old school punctuation. ::: reports/reserves_stats.pl @@ +43,4 @@
=head1 DESCRIPTION
+ Plugin that shows reserve stats
Doh! Good catch. ::: t/db_dependent/Koha/Authorities.t @@ +49,4 @@
is( Koha::Authorities->search->count, $nb_of_authorities + 2, 'The 2 authorities should have been added' );
$new_authority_1->delete; +is( Koha::Authorities->search->count, $nb_of_authorities + 1, 'Delete should have deleted the authority' );
Nice catch. -- You are receiving this mail because: You are watching all bug changes.