diff options
| author | wn_ <invalid@email.com> | 2024-08-21 17:58:18 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-08-21 17:58:18 +0000 |
| commit | 94c43fe9798643fe3bcc528607feb204c171248d (patch) | |
| tree | 75c0833756ace8cdd1789a6a02ecba1ac56613f3 /index.php | |
| parent | b8cbb167d493191eee2dafec1949fcdd47dddaca (diff) | |
Remove extra PHP version checks.
Since PHP 7.4.0 is the current minimum, we should be fine just using the check in 'Config::sanity_check()'.
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -1,14 +1,5 @@ <?php - - // we need a separate check here because functions.php might get parsed - // incorrectly before 5.3 because of :: syntax. - if (version_compare(PHP_VERSION, '7.4.0', '<')) { - print "<b>Fatal Error</b>: PHP version 7.4.0 or newer required. You're using " . PHP_VERSION . ".\n"; - exit; - } - - set_include_path(__DIR__ ."/include" . PATH_SEPARATOR . - get_include_path()); + set_include_path(__DIR__ . "/include" . PATH_SEPARATOR . get_include_path()); require_once "autoload.php"; require_once "sessions.php"; |