From d34d7fa8035a589b1d582c2c03b98d72f925841a Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 22 Sep 2016 00:05:19 -0400 Subject: [PATCH] CRM-19384 - Fix README regression in the installer The installer uses `README.txt` as a sanity-check to see if the files are in place. The file was renamed in CRM-19384, so this fixes the sanity-check. --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.php b/install/index.php index b47c9f2b48..5634dd26b4 100644 --- a/install/index.php +++ b/install/index.php @@ -565,7 +565,7 @@ class InstallRequirements { )); // Check that we can identify the root folder successfully - $this->requireFile($crmPath . CIVICRM_DIRECTORY_SEPARATOR . 'README.txt', + $this->requireFile($crmPath . CIVICRM_DIRECTORY_SEPARATOR . 'README.md', array( ts("File permissions"), ts("Does the webserver know where files are stored?"), -- 2.25.1