Fixed log viewer bug that caused some entries to go missing from the dropdown of...
[openemr.git] / version.php
blob4b2bb17c25f91a4feb538f65a85f5d838dc9f61c
1 <?php
2 // Software version identification.
3 // This is used for display purposes, and also the major/minor/patch
4 // numbers are stored in the database and used to determine which sql
5 // upgrade file is the starting point for the next upgrade.
6 $v_major = '4';
7 $v_minor = '1';
8 $v_patch = '3';
9 $v_tag = '-dev'; // minor revision number, should be empty for production releases
11 // A real patch identifier. This is incremented when release a patch for a
12 // production release. Not the above $v_patch variable is a misnomer and actually
13 // stores release version information.
14 $v_realpatch = '0';
16 // Database version identifier, this is to be incremented whenever there
17 // is a database change in the course of development. It is used
18 // internally to determine when a database upgrade is needed.
20 $v_database = 97;
22 // Access control version identifier, this is to be incremented whenever there
23 // is a access control change in the course of development. It is used
24 // during installation to determine what the installed version of the access
25 // controls is (subsequently the acl_upgrade.php script then is used to
26 // upgrade and track this value)
28 $v_acl = 2;