Wrap long line

This commit is contained in:
Jakub Vrana 2018-02-22 11:39:09 +01:00
parent 00721402e0
commit cd503f6a0d

View file

@ -23,7 +23,10 @@ class AdminerLoginOtp {
function loginFormField($name, $default) {
if ($name == 'password') {
return $default . "<tr><th><acronym title='One Time Password' lang='en'>OTP</acronym><td><input type='number' name='auth[otp]' value='" . h($_SESSION["otp"]) . "' size='6' autocomplete='off'>\n";
return $default
. "<tr><th><acronym title='One Time Password' lang='en'>OTP</acronym>"
. "<td><input type='number' name='auth[otp]' value='" . h($_SESSION["otp"]) . "' size='6' autocomplete='off'>\n"
;
}
}