install/actions/action_summary.php 1 location
|
@@ 310-314 (lines=5) @@
|
| 307 |
|
echo '<p>'; |
| 308 |
|
echo $_lang['setup_cannot_continue'] . ' '; |
| 309 |
|
|
| 310 |
|
if($errors > 1){ |
| 311 |
|
echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
| 312 |
|
}else{ |
| 313 |
|
echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
| 314 |
|
} |
| 315 |
|
|
| 316 |
|
echo $_lang['visit_forum']; |
| 317 |
|
echo '</p>'; |
install/cli-install.php 1 location
|
@@ 393-397 (lines=5) @@
|
| 390 |
|
if ($errors > 0) { |
| 391 |
|
echo $_lang['setup_cannot_continue'] . ' '; |
| 392 |
|
|
| 393 |
|
if($errors > 1){ |
| 394 |
|
echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
| 395 |
|
}else{ |
| 396 |
|
echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']. PHP_EOL; |
| 397 |
|
} |
| 398 |
|
|
| 399 |
|
die(); |
| 400 |
|
} |