View | Details | Raw Unified | Return to bug 16011
Collapse All | Expand All

(-)a/C4/External/BakerTaylor.pm (+1 lines)
Lines 33-38 use vars qw($user $pass $agent $image_url $link_url); Link Here
33
BEGIN {
33
BEGIN {
34
	require Exporter;
34
	require Exporter;
35
	@ISA = qw(Exporter);
35
	@ISA = qw(Exporter);
36
    $VERSION = 3.07.00.049;
36
	@EXPORT_OK = qw(&availability &content_cafe &image_url &link_url &http_jacket_link);
37
	@EXPORT_OK = qw(&availability &content_cafe &image_url &link_url &http_jacket_link);
37
	%EXPORT_TAGS = (all=>\@EXPORT_OK);
38
	%EXPORT_TAGS = (all=>\@EXPORT_OK);
38
}
39
}
(-)a/t/Koha/Plugin/Test.pm (-1 / +1 lines)
Lines 6-11 use Modern::Perl; Link Here
6
## Required for all plugins
6
## Required for all plugins
7
use base qw(Koha::Plugins::Base);
7
use base qw(Koha::Plugins::Base);
8
8
9
our $VERSION = 1.01;
9
our $metadata = {
10
our $metadata = {
10
    name            => 'Test Plugin',
11
    name            => 'Test Plugin',
11
    author          => 'Kyle M Hall',
12
    author          => 'Kyle M Hall',
12
- 

Return to bug 16011