diff options
| author | 2013-11-17 17:39:24 +0100 | |
|---|---|---|
| committer | 2013-11-17 17:39:24 +0100 | |
| commit | 642d1d378149db97e8e510b15ff6d9ec5f54b4d2 (patch) | |
| tree | dad7adeea4e565da995a8445187e681eb95661a9 /public/install.php | |
| parent | 627ada9531ad14873f8b3a42288b881f2a6100e4 (diff) | |
Correction préfixe base de données dans install.php
https://github.com/marienfressinaud/FreshRSS/issues/273
Diffstat (limited to 'public/install.php')
| -rw-r--r-- | public/install.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/install.php b/public/install.php index 9f576c7c9..ba8fe3675 100644 --- a/public/install.php +++ b/public/install.php @@ -218,6 +218,7 @@ function saveStep3 () { writeLine ($f, 'prefix = "' . $_SESSION['bd_prefix'] . '"'); fclose ($f); + $_SESSION['bd_prefix'] .= (empty($_SESSION['default_user']) ? '' : ($_SESSION['default_user'] . '_')); $res = checkBD (); if ($res) { |
