11049f9d02
It will permit not to run another perl interpreter. Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
14 lines
266 B
Perl
14 lines
266 B
Perl
# the next koha public release version number;
|
|
|
|
use Modern::Perl;
|
|
use Koha;
|
|
|
|
sub kohaversion {
|
|
our $VERSION = $Koha::VERSION;
|
|
# version needs to be set this way
|
|
# so that it can be picked up by Makefile.PL
|
|
# during install
|
|
return $VERSION;
|
|
}
|
|
|
|
1;
|