diff --git a/core/controllers/InstallController.php b/core/controllers/InstallController.php index 35698f7b0..a4f2aadc8 100644 --- a/core/controllers/InstallController.php +++ b/core/controllers/InstallController.php @@ -99,7 +99,6 @@ public function step2Action() } } - $this->view->writable = is_writable(BASE_PATH); $this->view->basePath = BASE_PATH; if ($this->_request->isPost()) { diff --git a/core/views/install/index.phtml b/core/views/install/index.phtml index 908644d09..29f69d233 100644 --- a/core/views/install/index.phtml +++ b/core/views/install/index.phtml @@ -47,16 +47,12 @@ } } - if ($this->writable === false) { - echo "
  • Unable to write to the application folder: {$this->basePath}. Please check your web server permissions.
  • "; - } - - if ($this->writable && empty($this->phpextension_missing)) { + if (empty($this->phpextension_missing)) { echo "
  • Your system is OK.
  • "; } echo ""; - if ($this->writable !== false) { + if (empty($this->phpextension_missing)) { echo "
    "; echo ""; echo "
    ";