Commit 7edbb5a13263a17d71cf31455078eb8171c4c1bf
1 parent
23fe3947
Exists in
master
and in
1 other branch
Gerente atualizado
- corrigido erro no instalador ("string") git-svn-id: http://svn.softwarepublico.gov.br/svn/cacic/cacic/trunk/gerente@278 fecfc0c7-e812-0410-ae72-849f08638ee7
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
instalador/classes/install.php
... | ... | @@ -388,10 +388,10 @@ class Install { |
388 | 388 | $buildDBOK = false; |
389 | 389 | |
390 | 390 | if(!isset($_SESSION['configFileSaved']) or !($_SESSION['configFileSaved'])) |
391 | - $msg .= "<span class='Erro'>'.$this->oLang->_('kciq_msg inst config file saved').'</span><br>"; | |
391 | + $msg .= "<span class='Erro'>".$this->oLang->_('kciq_msg inst config file saved')."</span><br>"; | |
392 | 392 | else { |
393 | 393 | if(!is_readable($cfgFileName) or ! @include_once($cfgFileName)) |
394 | - $msg .= "<span class='Erro'>'.$this->oLang->_('kciq_msg inst config file read').':</span><br>".$cfgFileName; | |
394 | + $msg .= "<span class='Erro'>".$this->oLang->_('kciq_msg inst config file read').":</span><br>".$cfgFileName; | |
395 | 395 | else |
396 | 396 | $cfgFileOk = true; |
397 | 397 | } |
... | ... | @@ -399,12 +399,12 @@ class Install { |
399 | 399 | if( isset($_SESSION['buildDBOK']) ) |
400 | 400 | $buildDBOK = $_SESSION['buildDBOK']; |
401 | 401 | if(!$buildDBOK) |
402 | - $msg .= "<span class='Erro'>'.$this->oLang->_('kciq_msg inst database build fail').'</span><br>"; | |
402 | + $msg .= "<span class='Erro'>".$this->oLang->_('kciq_msg inst database build fail')."</span><br>"; | |
403 | 403 | |
404 | 404 | if($cfgFileOk) { |
405 | 405 | $oDB = new ADO(); |
406 | 406 | if (!$oDB->conecta( $ip_servidor, $usuario_bd, $senha_usuario_bd, $nome_bd )) |
407 | - $msg .= "<span class='Erro'>'.$this->oLang->_('kciq_msg inst database connect fail').'</span><br>"; | |
407 | + $msg .= "<span class='Erro'>".$this->oLang->_('kciq_msg inst database connect fail')."</span><br>"; | |
408 | 408 | else |
409 | 409 | $dbConected = true; |
410 | 410 | } | ... | ... |