summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-27 14:13:07 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-27 14:13:07 +0100
commit49a0f42e3bb8ef4ebf55d26b7d2718120f7a8429 (patch)
tree7a3c1995ae1bf42985d58a699a52562dcf1537b1 /lib
parent81c664697b810d591b6b106bce7fde707c465e8f (diff)
downloadnextcloud-server-49a0f42e3bb8ef4ebf55d26b7d2718120f7a8429.tar.gz
nextcloud-server-49a0f42e3bb8ef4ebf55d26b7d2718120f7a8429.zip
fixed bug that would cause a failure because of undefined variable instead of %s in a translation string
Diffstat (limited to 'lib')
-rw-r--r--lib/setup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php
index fd5f3cd5bee..e20a970a3b4 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);