Added an extra parameter to db_export in maintenance_db.inc for new COAs
[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 // Internal data-source version compatibility check. Do not change.
8 $core_version = "2.3RC1";
9
10 // application version - can be set also in config.php
11 if (!isset($version))
12         $version                = "2.3RC1";
13
14 //======================================================================
15 // Extension packages repository settings 
16 //
17 // Default authorization data. Can be set also in config.php
18
19 if (!isset($repo_auth))
20         $repo_auth = array(
21                  'login' => 'anonymous',
22                  'pass' => 'password',
23 );
24
25 // Repository branch for current sources version
26 $FA_repo_version = '2.3';
27
28 // Extension packages repository url
29 $repository = 'http://'.$repo_auth['login'].':'.$repo_auth['pass'].'@'.'repo.frontaccounting.eu'
30         .'/index.php?path=';