1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 17:58:24 +03:00
This commit is contained in:
Alexey Kachayev 2009-11-14 07:33:37 +00:00
parent 04aef20bd1
commit d51d5da8ab

View file

@ -291,7 +291,7 @@ class Install {
return "'".$mVar."'";
case is_bool($mVar):
return ($mVar)?"'true'":"'false'";
return ($mVar)?"true":"false";
case is_array($mVar):
$sArrayString="";
@ -302,7 +302,7 @@ class Install {
default:
case is_numeric($mVar):
return "'".(string)$mVar."'";
return "'".(string)$mVar."'";
}
}
@ -496,6 +496,7 @@ class Install {
*/
function StepAdmin() {
$this->SetSessionVar(self::SESSSION_KEY_STEP_NAME,'Admin');
$this->Assign('install_step_number',3);
/**
* Передаем данные из запроса во вьювер, сохраняя значение в сессии
*/