Translations Supports was fixed and solve multiples bugs: 6137, 6474, 6476, 6513, 6560, 6597, 6599

This commit is contained in:
Erik Amaru Ortiz
2011-03-30 12:08:38 -04:00
parent 0fb7ae29dd
commit c028d2a145
5 changed files with 63 additions and 64 deletions

View File

@@ -205,7 +205,7 @@ class Translation extends BaseTranslation {
$msg = '';
$validationFailuresArray = $tr->getValidationFailures();
foreach($validationFailuresArray as $objValidationFailure) {
$msg .= $objValidationFailure->getMessage() . "<br/>";
$msg .= $objValidationFailure->getMessage() . "\n";
}
return array ( 'codError' => -100, 'rowsAffected' => 0, 'message' => $msg );
}