Merging latest changes from stable branch up to 2.3.24
[fa-stable.git] / version.php
1 <?php
2 //==========================================================================================
3 //
4 // Settings in this file can be automatically updated at any time during software update.
5 //
6
7 // Versions used by source/database version compatibility checks. Do not change.
8 $db_version = "2.4.0";
9 $src_version = "2.4.0";
10
11 // application version - can be overriden in config.php
12 if (!isset($version))
13         $version = $src_version;
14
15 //======================================================================
16 // Extension packages repository settings 
17 //
18 // Extensions repository. Can be overriden in config.php
19
20 if (!isset($repo_auth))
21         $repo_auth = array(
22                  'login' => 'anonymous',
23                  'pass' => 'password',
24                  'host' => 'repo.frontaccounting.eu', // repo server address
25                  'branch' => '2.3'      // Repository branch for current sources version
26 );