]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - web/index.php
add install script after composer install
[github/wallabag/wallabag.git] / web / index.php
index 84e49eb1c8ff2bea87de9cc2ea3e083940d916ee..ac361181f29bec5a78c6f1dc3b90029d291351b4 100644 (file)
@@ -13,12 +13,11 @@ define ('WALLABAG', '2.0.0-alpha');
 use Wallabag\Wallabag\Wallabag;
 
 require_once '../app/check_essentials.php';
-require_once '../app/check_setup.php';
 require_once '../app/config/global.inc.php';
 
-// Check if /cache is writeable
+// Check if /cache is writable
 if (! is_writable(CACHE)) {
-    die('The directory ' . CACHE . ' must be writeable by your web server user');
+    die('The directory ' . CACHE . ' must be writable by your web server user');
 }
 
 Session::$sessionName = 'wallabag';