diff --git a/src/Core/Installer.php b/src/Core/Installer.php index 28db93d29..4f2f2d99f 100644 --- a/src/Core/Installer.php +++ b/src/Core/Installer.php @@ -196,7 +196,7 @@ class Installer if ($result) { $txt = DI::l10n()->t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL; - $txt .= DI::l10n()->t('Please see the file "INSTALL.txt".'); + $txt .= DI::l10n()->t('Please see the file "doc/INSTALL.md".'); $this->addCheck($txt, false, true, htmlentities($result, ENT_COMPAT, 'UTF-8')); diff --git a/src/Module/Install.php b/src/Module/Install.php index 21510d206..1448d5544 100644 --- a/src/Module/Install.php +++ b/src/Module/Install.php @@ -188,7 +188,7 @@ class Install extends BaseModule '$pass' => DI::l10n()->t('System check'), '$checks' => self::$installer->getChecks(), '$passed' => $status, - '$see_install' => DI::l10n()->t('Please see the file "INSTALL.txt".'), + '$see_install' => DI::l10n()->t('Please see the file "doc/INSTALL.md".'), '$next' => DI::l10n()->t('Next'), '$reload' => DI::l10n()->t('Check again'), '$php_path' => $php_path,