Update to version 1.0.2

This commit is contained in:
nuxsmin
2013-11-05 14:09:04 +01:00
parent 906ab602d2
commit 284c9eefe2
2 changed files with 3 additions and 3 deletions

View File

@@ -415,7 +415,7 @@ class SP_Init {
$update = FALSE;
$configVersion = SP_Config::getValue('version');
$databaseVersion = SP_Config::getConfigValue('version');
$appVersion = SP_Util::getVersionString();
$appVersion = implode('.', SP_Util::getVersion());
if ( $configVersion != $appVersion ){
SP_Config::setValue('version', $appVersion);
@@ -443,4 +443,4 @@ $memInit = memory_get_usage();
$time_start = SP_Init::microtime_float();
// Inicializar sysPass
SP_Init::init();
SP_Init::init();

View File

@@ -169,7 +169,7 @@ class SP_Util {
* @return array con el número de versión
*/
public static function getVersion() {
return array(1, 00, 01);
return array(1, 00, 02);
}
/**