diff options
| author | 2014-08-03 08:47:18 -0400 | |
|---|---|---|
| committer | 2014-08-03 08:47:18 -0400 | |
| commit | e05e9a87021862b334bccedb3d2383e9fa568a9b (patch) | |
| tree | fd17a3cc303a8143c570e2a58d637f0da3dfad61 /app/i18n/install.en.php | |
| parent | a9a61929485279c819d42b7a2d65b8a1f5e2cfdd (diff) | |
Refactor install file to check available databases
Now it checks for any pdo driver supported instead of only mysql
Diffstat (limited to 'app/i18n/install.en.php')
| -rw-r--r-- | app/i18n/install.en.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/i18n/install.en.php b/app/i18n/install.en.php index 553a79921..50208fcef 100644 --- a/app/i18n/install.en.php +++ b/app/i18n/install.en.php @@ -28,8 +28,8 @@ return array ( 'minz_is_nok' => 'You lack the Minz framework. You should execute <em>build.sh</em> script or <a href="https://github.com/marienfressinaud/MINZ">download it on Github</a> and install in <em>%s</em> directory the content of its <em>/lib</em> directory.', 'curl_is_ok' => 'You have version %s of cURL', 'curl_is_nok' => 'You lack cURL (php5-curl package)', - 'pdomysql_is_ok' => 'You have PDO and its driver for MySQL', - 'pdomysql_is_nok' => 'You lack PDO or its driver for MySQL (php5-mysql package)', + 'pdo_is_ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite)', + 'pdo_is_nok' => 'You lack PDO or one of the supported drivers (pdo_mysql, pdo_sqlite)', 'dom_is_ok' => 'You have the required library to browse the DOM', 'dom_is_nok' => 'You lack a required library to browse the DOM (php-xml package)', 'pcre_is_ok' => 'You have the required library for regular expressions (PCRE)', |
