130e3d9c10
This patch touches a lot of code, but basically it removes version information from use C4::* in our code. Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> All script still compiles after the patch (confirmed by pre-applypatch hook)
13 lines
228 B
Perl
13 lines
228 B
Perl
package C4::Labels;
|
|
|
|
BEGIN {
|
|
use version; our $VERSION = qv('3.07.00.049');
|
|
|
|
use C4::Labels::Batch;
|
|
use C4::Labels::Label;
|
|
use C4::Labels::Layout;
|
|
use C4::Labels::Profile;
|
|
use C4::Labels::Template;
|
|
}
|
|
|
|
1;
|