From cd503f6a0d0b3b58cfd8d7aec183f5eb2f8f65cf Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 22 Feb 2018 11:39:09 +0100 Subject: [PATCH] Wrap long line --- plugins/login-otp.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/login-otp.php b/plugins/login-otp.php index 0b8dfe74..4beddc08 100644 --- a/plugins/login-otp.php +++ b/plugins/login-otp.php @@ -23,7 +23,10 @@ class AdminerLoginOtp { function loginFormField($name, $default) { if ($name == 'password') { - return $default . "OTP\n"; + return $default + . "OTP" + . "\n" + ; } }