diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-12-27 13:46:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 13:46:29 +0100 |
commit | 2cd92da7338d1cc6fefd191f04e829a16551ee53 (patch) | |
tree | d9521ea9e843dddf0d7546f378ddc61c2d15fc3a | |
parent | f237c582ba5232d0b73c2a2a0cb15101f06697d0 (diff) | |
parent | 3dc562bb7a807cdc69ad25ac199f280dfa937324 (diff) | |
download | nextcloud-server-2cd92da7338d1cc6fefd191f04e829a16551ee53.tar.gz nextcloud-server-2cd92da7338d1cc6fefd191f04e829a16551ee53.zip |
Merge pull request #2821 from nextcloud/added-hint-for-specifying
Fix #24219: Added hint for specifying a port. (#26860)
-rw-r--r-- | core/templates/installation.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index d3f5021821d..2f645454128 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -142,6 +142,9 @@ script('core', [ value="<?php p($_['dbhost']); ?>" autocomplete="off" autocapitalize="off" autocorrect="off"> </p> + <p class="info"> + <?php p($l->t( 'Please specify the port number along with the host name (e.g., localhost:5432).' )); ?> + </p> </div> </fieldset> <?php endif; ?> |