From 49a0f42e3bb8ef4ebf55d26b7d2718120f7a8429 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 27 Feb 2013 14:13:07 +0100 Subject: [PATCH] fixed bug that would cause a failure because of undefined variable instead of %s in a translation string --- lib/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup.php b/lib/setup.php index fd5f3cd5be..e20a970a3b 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);