Browse Source
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>3.20.x
14 changed files with 58 additions and 73 deletions
@ -0,0 +1,20 @@ |
|||
package Koha; |
|||
|
|||
use Modern::Perl; |
|||
|
|||
use vars qw{ $VERSION }; |
|||
|
|||
#the kohaversion is divided in 4 parts : |
|||
# - #1 : the major number. 3 atm |
|||
# - #2 : the functional release. 00 atm |
|||
# - #3 : the subnumber, moves only on a public release |
|||
# - #4 : the developer version. The 4th number is the database subversion. |
|||
# used by developers when the database changes. updatedatabase take care of the changes itself |
|||
# and is automatically called by Auth.pm when needed. |
|||
$VERSION = "3.19.00.038"; |
|||
|
|||
sub version { |
|||
return $VERSION; |
|||
} |
|||
|
|||
1; |
Loading…
Reference in new issue