related to some corrections and improvements to the hasn installation rebuild

This commit is contained in:
Gustavo Adolfo Cruz Laura
2011-01-14 22:36:21 +00:00
parent f295765fe6
commit 08322a9dfa

View File

@@ -192,12 +192,15 @@
$filename = PATH_HOME.'engine'.PATH_SEP.'config'.PATH_SEP.'paths_installed.php'; $filename = PATH_HOME.'engine'.PATH_SEP.'config'.PATH_SEP.'paths_installed.php';
$lines = file($filename); $lines = file($filename);
$count = 1;
foreach ($lines as $line_num => $line) { foreach ($lines as $line_num => $line) {
if ($line_num<5){ $pos = strpos($line, "define");
$content = $content. $line; if ($pos!==false&&$count<3) {
} $content = $content. $line;
$count++;
}
} }
$content = $content.$insertStatements."\n"; $content = "<?php \n".$content."\n".$insertStatements."\n";
if (file_put_contents($filename, $content)!=false){ if (file_put_contents($filename, $content)!=false){
echo G::loadTranslation('ID_MESSAGE_ROOT_CHANGE_SUCESS'); echo G::loadTranslation('ID_MESSAGE_ROOT_CHANGE_SUCESS');
} else { } else {