Skip to content
Snippets Groups Projects
Commit 49a0f42e authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

fixed bug that would cause a failure because of undefined variable instead of...

fixed bug that would cause a failure because of undefined variable  instead of %s in a translation string
parent 81c66469
No related branches found
No related tags found
No related merge requests found
...@@ -628,7 +628,7 @@ class OC_Setup { ...@@ -628,7 +628,7 @@ class OC_Setup {
} else { } else {
$entry = ''; $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); OC_Config::setValue('dbuser', $dbuser);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment