Koha/kohaversion.pl
paul 336ce43e85 bump to 3.00.00.006 : issues.issuedate auto fill added on update
In Koha 2.2 there was no field to store the issue date. There was only a timestamp
which is modified every time you do something on the line.
it's fixed in 3.0, but the new issuedate field is empty for 2.2 catalogue migrated to 3.0
This fills the issue date with a value that is probably wrong, but we can't know the correct one.
at least we have something and the stats works (Date::Calc is very unhappy if the field is empty)

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-10-05 19:27:20 -05:00

14 lines
510 B
Perl

# the next koha public release version number;
# the kohaversion is divided in 4 parts :
# - #1 : the major number. 3 atm
# - #2 : the functionnal release. 00 atm
# - #3 : the subnumber, moves only on a public release
# - #4 : the developper version. The 4th number is the database subversion.
# used by developpers when the database changes. updatedatabase take care of the changes itself
# and is automatically called by Auth.pm when needed.
sub kohaversion {
return "3.00.00.006";
}
1;