diff options
author | Brice Maron <brice@bmaron.net> | 2011-10-14 18:04:50 +0200 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-10-14 18:04:50 +0200 |
commit | c0b011e71427ac25b13ac44d34eb3a747d17832b (patch) | |
tree | 6b082c19070445ba883aefdd7a3c49a4ac27ca6d /core/templates/installation.php | |
parent | db2fb38746bb9d89b402c3a768a247945d813989 (diff) | |
download | nextcloud-server-c0b011e71427ac25b13ac44d34eb3a747d17832b.tar.gz nextcloud-server-c0b011e71427ac25b13ac44d34eb3a747d17832b.zip |
Initialise hasOtherDB var when not true in installation
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 70a545d66cf..f1cde6b3904 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -37,7 +37,7 @@ </fieldset> <fieldset id='databaseField'> - <?php if($_['hasMySQL'] or $_['hasPostgreSQL']) $hasOtherDB = true; //other than SQLite ?> + <?php if($_['hasMySQL'] or $_['hasPostgreSQL']) $hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?> <legend><?php echo $l->t( 'Configure the database' ); ?></legend> <div id="selectDbType"> <?php if($_['hasSQLite']): ?> |