aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/check_essentials.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-05 21:33:22 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-05 21:33:22 +0100
commit93e28e4d2ec677a852d71d167dc7c54ef2780cae (patch)
treefe07834a8da861835bafe848be819f45d348619c /app/check_essentials.php
parent5644c2d88e092927677c4f8c2c64db454e140431 (diff)
downloadwallabag-93e28e4d2ec677a852d71d167dc7c54ef2780cae.tar.gz
wallabag-93e28e4d2ec677a852d71d167dc7c54ef2780cae.tar.zst
wallabag-93e28e4d2ec677a852d71d167dc7c54ef2780cae.zip
remove unused files
Diffstat (limited to 'app/check_essentials.php')
-rw-r--r--app/check_essentials.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/check_essentials.php b/app/check_essentials.php
deleted file mode 100644
index 073b6032..00000000
--- a/app/check_essentials.php
+++ /dev/null
@@ -1,14 +0,0 @@
1<?php
2if (!file_exists(__DIR__ . '/config/config.inc.php')) {
3 die('wallabag seems to be not installed. Please execute ./bin/install before.');
4}
5
6if (version_compare(PHP_VERSION, '5.3.3', '<')) {
7 die('This software require PHP 5.3.3 minimum');
8}
9
10if (version_compare(PHP_VERSION, '5.4.0', '<')) {
11 if (! ini_get('short_open_tag')) {
12 die('This software require to have short tags enabled, check your php.ini => "short_open_tag = On"');
13 }
14} \ No newline at end of file