Changed repo_auth format.
[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 database version compatibility check. Do not change.
8 $db_version = "2.3rc";
9
10 // application version - can be overriden in config.php
11 if (!isset($version))
12         $version                = "2.3RC1";
13
14 //======================================================================
15 // Extension packages repository settings 
16 //
17 // Extensions repository. Can be overriden in config.php
18
19 if (!isset($repo_auth))
20         $repo_auth = array(
21                  'login' => 'anonymous',
22                  'pass' => 'password',
23                  'host' => 'repo.frontaccounting.eu', // repo server address
24                  'branch' => '2.3'      // Repository branch for current sources version
25 );