diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-07-31 10:56:14 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-31 10:56:14 +0200 |
commit | 2a5acd0882180dd5a25d25112594330bbce96c51 (patch) | |
tree | 35505894347e74235e9f67b37b12e1a169ce9b30 /install.php | |
parent | 075af58eea2b3190762ee2134bd9a341a8d4546e (diff) |
install.php: Fix version check
We actually already depend on 5.5 due to using password_hash (see NEWS)
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 5287fbebb..6e3dee03c 100644 --- a/install.php +++ b/install.php @@ -1,7 +1,7 @@ <?php -if (version_compare(PHP_VERSION, '5.3.0') < 0) { - echo "Just a heads up: Filebin has not been tested with php older than 5.3. You might run into problems."; +if (version_compare(PHP_VERSION, '5.5.0') < 0) { + echo "Filebin will most certainly not work with php older than 5.5. Use at your own risk!\n\n"; } $errors = ""; |