diff options
| author | 2016-08-03 00:06:06 +0200 | |
|---|---|---|
| committer | 2016-08-03 00:06:06 +0200 | |
| commit | 4402d92f013ada8fa814a02d8ee1a6a61a7e5001 (patch) | |
| tree | 78d2be204210164f3001f52c86c24e50a09413b0 /app/install.php | |
| parent | d5382ff0d06fd9f202ca2e6d3fb3cb757ed912e3 (diff) | |
Install script bug
Diffstat (limited to 'app/install.php')
| -rw-r--r-- | app/install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/install.php b/app/install.php index ffff9f8e9..6e902485c 100644 --- a/app/install.php +++ b/app/install.php @@ -709,7 +709,7 @@ function printStep3() { <p class="alert alert-error"><span class="alert-head"><?php echo _t('gen.short.damn'); ?></span> <?php echo _t('install.bdd.conf.ko'),(empty($_SESSION['bd_error']) ? '' : ' : ' . $_SESSION['bd_error']); ?></p> <?php } ?> - <form action="index.php?step=3" method="post"> + <form action="index.php?step=3" method="post" autocomplete="off"> <legend><?php echo _t('install.bdd.conf'); ?></legend> <div class="form-group"> <label class="group-name" for="type"><?php echo _t('install.bdd.type'); ?></label> @@ -728,7 +728,7 @@ function printStep3() { </option> <?php }?> <?php if (extension_loaded('pdo_pgsql')) {?> - <option value="sqlite" + <option value="pgsql" <?php echo(isset($_SESSION['bd_type']) && $_SESSION['bd_type'] === 'pgsql') ? 'selected="selected"' : ''; ?>> PostgreSQL </option> @@ -755,7 +755,7 @@ function printStep3() { <div class="form-group"> <label class="group-name" for="pass"><?php echo _t('install.bdd.password'); ?></label> <div class="group-controls"> - <input type="password" id="pass" name="pass" value="<?php echo isset($_SESSION['bd_password']) ? $_SESSION['bd_password'] : ''; ?>" tabindex="4" /> + <input type="password" id="pass" name="pass" value="<?php echo isset($_SESSION['bd_password']) ? $_SESSION['bd_password'] : ''; ?>" tabindex="4" autocomplete="off" /> </div> </div> |
