feature 1255: Move $conf['db_sqlite_default'] and $conf['dbengine_select_default'] in install.php (as constants).
PDO::SQLite is now displayed as SQLite in install page. Always display unique SQLite engine. git-svn-id: http://piwigo.org/svn/trunk@5239 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
f5af5ab4c1
commit
fdb92b15fa
4 changed files with 25 additions and 21 deletions
11
install.php
11
install.php
|
|
@ -98,6 +98,15 @@ if( !@get_magic_quotes_gpc() )
|
|||
|
||||
define('DEFAULT_PREFIX_TABLE', 'piwigo_');
|
||||
|
||||
// default database engine proposed if severals are available
|
||||
// choices : sqlite, mysql, pgsql, pdo-sqlite
|
||||
// see include/dblayer/dblayers.inc.php
|
||||
define('DEFAULT_DB_ENGINE', 'mysql');
|
||||
|
||||
// database engine default choice between sqlite (native or via pdo)
|
||||
// if the twice are available.
|
||||
define('DEFAULT_DB_SQLITE', 'native');
|
||||
|
||||
if (isset($_POST['install']))
|
||||
{
|
||||
$prefixeTable = $_POST['prefix'];
|
||||
|
|
@ -115,7 +124,7 @@ $dbhost = (!empty($_POST['dbhost'])) ? $_POST['dbhost'] : 'localhost';
|
|||
$dbuser = (!empty($_POST['dbuser'])) ? $_POST['dbuser'] : '';
|
||||
$dbpasswd = (!empty($_POST['dbpasswd'])) ? $_POST['dbpasswd'] : '';
|
||||
$dbname = (!empty($_POST['dbname'])) ? $_POST['dbname'] : '';
|
||||
$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : $conf['dbengine_select_default'];
|
||||
$dblayer = (!empty($_POST['dblayer'])) ? $_POST['dblayer'] : DEFAULT_DB_ENGINE;
|
||||
|
||||
$admin_name = (!empty($_POST['admin_name'])) ? $_POST['admin_name'] : '';
|
||||
$admin_pass1 = (!empty($_POST['admin_pass1'])) ? $_POST['admin_pass1'] : '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue