Koha/C4/Labels.pm
Jonathan Druart 017699c345 Bug 16011: $VERSION - Remove the $VERSION init
Mainly a
  perl -p -i -e 's/^.*3.07.00.049.*\n//' **/*.pm
Then some adjustements

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@unc.edu.ar>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
2016-03-24 17:20:28 +00:00

12 lines
177 B
Perl

package C4::Labels;
BEGIN {
use C4::Labels::Batch;
use C4::Labels::Label;
use C4::Labels::Layout;
use C4::Labels::Profile;
use C4::Labels::Template;
}
1;