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
|
@@ 369-373 (lines=5) @@
|
| 366 |
|
if ($errors > 0) { |
| 367 |
|
echo $_lang['setup_cannot_continue'] . ' '; |
| 368 |
|
|
| 369 |
|
if($errors > 1){ |
| 370 |
|
echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
| 371 |
|
}else{ |
| 372 |
|
echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']. PHP_EOL; |
| 373 |
|
} |
| 374 |
|
|
| 375 |
|
die(); |
| 376 |
|
} |