Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2011-10-14 20:04:50 +0400
committerBrice Maron <brice@bmaron.net>2011-10-14 20:04:50 +0400
commitc0b011e71427ac25b13ac44d34eb3a747d17832b (patch)
tree6b082c19070445ba883aefdd7a3c49a4ac27ca6d /core
parentdb2fb38746bb9d89b402c3a768a247945d813989 (diff)
Initialise hasOtherDB var when not true in installation
Diffstat (limited to 'core')
-rw-r--r--core/templates/installation.php2
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']): ?>