diff options
| author | 2015-01-08 12:15:09 +0100 | |
|---|---|---|
| committer | 2015-01-08 12:15:09 +0100 | |
| commit | 2ac732ec6d490f1b7897aac6786d00e7ec7b2fff (patch) | |
| tree | dca095ea81e5875224e342320860ede3486f5fee | |
| parent | 59abb0c7540369e59b9b81caa867fc7b70c52667 (diff) | |
Fix i18n in install.php
Init i18n must be done before check steps
| -rw-r--r-- | app/install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/install.php b/app/install.php index a2c12e79f..090539a23 100644 --- a/app/install.php +++ b/app/install.php @@ -778,10 +778,10 @@ function printStep5() { <?php } -checkStep(); - initTranslate(); +checkStep(); + switch (STEP) { case 0: default: |
