mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #1961 from owncloud/trans_fix
fixed bug that would cause a failure because of undefined variable inst...
This commit is contained in:
commit
a708b63402
1 changed files with 1 additions and 1 deletions
|
|
@ -628,7 +628,7 @@ class OC_Setup {
|
|||
} else {
|
||||
$entry = '';
|
||||
}
|
||||
throw new Exception($l->t('MS SQL username and/or password not valid: $s', array($entry)));
|
||||
throw new Exception($l->t('MS SQL username and/or password not valid: %s', array($entry)));
|
||||
}
|
||||
|
||||
OC_Config::setValue('dbuser', $dbuser);
|
||||
|
|
|
|||
Loading…
Reference in a new issue