| @@ 84-86 (lines=3) @@ | ||
| 81 | public function run() |
|
| 82 | { |
|
| 83 | // Initialize log |
|
| 84 | if (is_null(Symphony::Log()) || !file_exists(Symphony::Log()->getLogPath())) { |
|
| 85 | self::__render(new UpdaterPage('missing-log')); |
|
| 86 | } |
|
| 87 | ||
| 88 | // Get available migrations. This will only contain the migrations |
|
| 89 | // that are applicable to the current install. |
|
| @@ 99-101 (lines=3) @@ | ||
| 96 | public function run() |
|
| 97 | { |
|
| 98 | // Make sure a log file is available |
|
| 99 | if (is_null(Symphony::Log()) || !file_exists(Symphony::Log()->getLogPath())) { |
|
| 100 | self::__render(new InstallerPage('missing-log')); |
|
| 101 | } |
|
| 102 | ||
| 103 | // Check essential server requirements |
|
| 104 | $errors = self::__checkRequirements(); |
|