← Index
Performance Profile   « block view • line view • sub view »
For opac/opac-main.pl
  Run on Thu Jul 17 22:22:09 2008
Reported on Thu Jul 17 22:22:23 2008

Filekohaversion.pl
Statements Executed6
Total Time7.7e-05 seconds

Subroutines — ordered by inclusive time then name
CallsInclusive
Time
Subroutine
10.00001C4::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.000070.00002use strict;
# spent 0.00001s making 1 calls to strict::import
11
12
# spent 0.00001s within C4::Context::kohaversion which was called: # 1 times (0.00001s) by C4::Context::KOHAVERSION at line 205 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
2013e-063e-061;