diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-27 05:17:30 -0800 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-27 05:17:30 -0800 |
commit | a708b63402527d3c850553d105461d44ebd6bf49 (patch) | |
tree | 9e0676972ef63365ca05084724f4e1c2607949ad /lib/setup.php | |
parent | 49f2a2d25da31f8d70a49f048e9c36967a711f5d (diff) | |
parent | 49a0f42e3bb8ef4ebf55d26b7d2718120f7a8429 (diff) | |
download | nextcloud-server-a708b63402527d3c850553d105461d44ebd6bf49.tar.gz nextcloud-server-a708b63402527d3c850553d105461d44ebd6bf49.zip |
Merge pull request #1961 from owncloud/trans_fix
fixed bug that would cause a failure because of undefined variable inst...
Diffstat (limited to 'lib/setup.php')
-rw-r--r-- | lib/setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php index b7fe2f6a2cc..8f772e663e2 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -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); |