From 2b3314df6a37601ff806d9e2d5b7dd96053d2ae3 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Thu, 5 Aug 2010 09:56:00 +0000 Subject: [PATCH] Changed repo_auth format. --- version.php | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/version.php b/version.php index 7f2a9fc4..6cf66b20 100644 --- a/version.php +++ b/version.php @@ -4,27 +4,22 @@ // Settings in this file can be automatically updated at any time during software update. // -// Internal data-source version compatibility check. Do not change. -$core_version = "2.3RC1"; +// Internal database version compatibility check. Do not change. +$db_version = "2.3rc"; -// application version - can be set also in config.php +// application version - can be overriden in config.php if (!isset($version)) $version = "2.3RC1"; //====================================================================== // Extension packages repository settings // -// Default authorization data. Can be set also in config.php +// 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 ); - -// Repository branch for current sources version -$FA_repo_version = '2.3'; - -// Extension packages repository url -$repository = 'http://'.$repo_auth['login'].':'.$repo_auth['pass'].'@'.'repo.frontaccounting.eu' - .'/index.php?path='; -- 2.30.2