diff options
| author | 2016-11-08 08:23:30 +0100 | |
|---|---|---|
| committer | 2016-11-08 08:23:30 +0100 | |
| commit | 2cdc83d24d0c90df1410d3b5672542a2e4c146c2 (patch) | |
| tree | 77cbd64e5739f532963bb4fb0243eaeb7b43848e | |
| parent | f3d5cbd7da78b9dff18104c539b140128ec98af2 (diff) | |
| parent | cbe778f62c6d99026b7cd61b1ca28ed2ea88030e (diff) | |
Merge pull request #1366 from Alkarex/pgsql-slash
Allow slash in database hostname
| -rw-r--r-- | app/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/install.php b/app/install.php index 5c8a6e0e8..869bf076f 100644 --- a/app/install.php +++ b/app/install.php @@ -634,7 +634,7 @@ function printStep3() { <div class="form-group"> <label class="group-name" for="host"><?php echo _t('install.bdd.host'); ?></label> <div class="group-controls"> - <input type="text" id="host" name="host" pattern="[0-9A-Za-z_.-]{1,64}(:[0-9]{2,5})?" value="<?php echo isset($_SESSION['bd_host']) ? $_SESSION['bd_host'] : $system_default_config->db['host']; ?>" tabindex="2" /> + <input type="text" id="host" name="host" pattern="[0-9A-Z/a-z_.-]{1,64}(:[0-9]{2,5})?" value="<?php echo isset($_SESSION['bd_host']) ? $_SESSION['bd_host'] : $system_default_config->db['host']; ?>" tabindex="2" /> </div> </div> |
