Browse Source

Initialise hasOtherDB var when not true in installation

tags/v3.0
Brice Maron 12 years ago
parent
commit
c0b011e714
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/templates/installation.php

+ 1
- 1
core/templates/installation.php View File

@@ -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']): ?>

Loading…
Cancel
Save