← Index
Performance Profile   « block view • line view • sub view »
For opac/opac-main.pl
  Run on Fri Jul 18 13:58:34 2008
Reported on Fri Jul 18 13:58:41 2008

Filekohaversion.pl
Statements Executed6
Total Time8.2e-05 seconds

Subroutines — ordered by inclusive time then name
CallsInclusive
Time
Subroutine
10.00002C4::Context::kohaversion
00C4::Context::BEGIN

LineStmts.Exclusive
Time
Avg.Code
1# the next koha public release version number;
2# the kohaversion is divided in 4 parts :
3# - #1 : the major number. 3 atm
4# - #2 : the functionnal release. 00 atm
5# - #3 : the subnumber, moves only on a public release
6# - #4 : the developer version. The 4th number is the database subversion.
7# used by developers when the database changes. updatedatabase take care of the changes itself
8# and is automatically called by Auth.pm when needed.
9
1030.000080.00003use strict;
# spent 0.00001s making 1 calls to strict::import
11
12
# spent 0.00002s within C4::Context::kohaversion which was called: # 1 times (0.00002s) by C4::Context::KOHAVERSION at line 214 of C4/Context.pm
sub kohaversion {
1322e-061e-06 our $VERSION = '3.00.00.099';
14 # version needs to be set this way
15 # so that it can be picked up by Makefile.PL
16 # during install
17 return $VERSION;
18}
19
2014e-064e-061;