1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 14:50:48 +03:00

fix #857 install

This commit is contained in:
Mzhelskiy Maxim 2017-03-17 17:29:04 +07:00
parent f671db6700
commit 21f832d1b8

View file

@ -85,6 +85,22 @@ class InstallStepUpdateVersion extends InstallStep
return $this->addError(join('<br/>', $aErrors));
}
/**
* Конвертор версии 1.0.3 в 2.0.1
*
* @param $oDb
*
* @return bool
*/
public function convertFrom_1_0_3_to_2_0_1($oDb)
{
$mResult = $this->convertFrom_1_0_3_to_2_0_0($oDb);
if ($mResult == true) {
$mResult = $this->convertFrom_2_0_0_to_2_0_1($oDb);
}
return $mResult;
}
/**
* Конвертор версии 1.0.3 в 2.0.0
*