fixed bug that would cause a failure because of undefined variable instead of %s in a translation string
This commit is contained in:
parent
81c664697b
commit
49a0f42e3b
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue