forked from FrontAccountingERP/FA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.php
25 lines (21 loc) · 798 Bytes
/
version.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
//==========================================================================================
//
// Settings in this file can be automatically updated at any time during software update.
//
// Internal database version compatibility check. Do not change.
$db_version = "2.3rc";
// application version - can be overriden in config.php
if (!isset($version))
$version = "2.3.24";
//======================================================================
// Extension packages repository settings
//
// Extensions repository. Can be overriden in config.php
if (!isset($repo_auth))
$repo_auth = array(
'login' => 'anonymous',
'pass' => 'password',
'host' => 'repo.frontaccounting.eu', // repo server address
'branch' => '2.3' // Repository branch for current sources version
);