FIX: helperPath in _register_database.php

`MySQLDataBaseConfigurationHelper.php` is not in `framework/dev/install` but it is in `framework/Dev/Install`.
This commit is contained in:
David Alexander 2016-10-26 13:28:44 +13:00 committed by GitHub
parent bed547fc86
commit a0d31e86d6
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ DatabaseAdapterRegistry::register(
'class' => 'MySQLDatabase',
'module' => 'framework',
'title' => 'MySQL 5.0+ (using MySQLi)',
'helperPath' => __DIR__ . '/dev/install/MySQLDatabaseConfigurationHelper.php',
'helperPath' => __DIR__ . '/Dev/Install/MySQLDatabaseConfigurationHelper.php',
'helperClass' => MySQLDatabaseConfigurationHelper::class,
'supported' => class_exists('MySQLi'),
'missingExtensionText' =>
@ -27,7 +27,7 @@ DatabaseAdapterRegistry::register(
'class' => 'MySQLPDODatabase',
'module' => 'framework',
'title' => 'MySQL 5.0+ (using PDO)',
'helperPath' => __DIR__ . '/dev/install/MySQLDatabaseConfigurationHelper.php',
'helperPath' => __DIR__ . '/Dev/Install/MySQLDatabaseConfigurationHelper.php',
'helperClass' => MySQLDatabaseConfigurationHelper::class,
'supported' => (class_exists('PDO') && in_array('mysql', PDO::getAvailableDrivers())),
'missingExtensionText' =>