Bug 14275: Remove CGI::scrolling_list from guided_reports.pl
[koha.git] / kohaversion.pl
1 # the next koha public release version number;
2
3 use Modern::Perl;
4 use Koha;
5
6 sub kohaversion {
7     our $VERSION = $Koha::VERSION;
8     # version needs to be set this way
9     # so that it can be picked up by Makefile.PL
10     # during install
11     return $VERSION;
12 }
13
14 1;