summaryrefslogtreecommitdiff
path: root/plugins/auth_internal/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-05-03 18:37:08 +0000
committerAndrew Dolgov <[email protected]>2014-05-03 18:37:08 +0000
commita0dfd7ef88dc164042fc8f6dff60458fdc36ce83 (patch)
tree326fec94655408e82bae9762202572130ab8c9f2 /plugins/auth_internal/init.php
parenteb30c61834d720b36a6ea1e7867e1796d526987f (diff)
fix several login parameters not being passed through OTP form
Diffstat (limited to 'plugins/auth_internal/init.php')
-rw-r--r--plugins/auth_internal/init.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/auth_internal/init.php b/plugins/auth_internal/init.php
index 32ec276a7..dc49229f6 100644
--- a/plugins/auth_internal/init.php
+++ b/plugins/auth_internal/init.php
@@ -58,6 +58,9 @@ class Auth_Internal extends Plugin implements IAuthModule {
<input type="hidden" name="op" value="login">
<input type="hidden" name="login" value="<?php echo htmlspecialchars($login) ?>">
<input type="hidden" name="password" value="<?php echo htmlspecialchars($password) ?>">
+ <input type="hidden" name="bw_limit" value="<?php echo htmlspecialchars($_POST["bw_limit"]) ?>">
+ <input type="hidden" name="remember_me" value="<?php echo htmlspecialchars($_POST["remember_me"]) ?>">
+ <input type="hidden" name="profile" value="<?php echo htmlspecialchars($_POST["profile"]) ?>">
<label><?php echo __("Please enter your one time password:") ?></label>
<input autocomplete="off" size="6" name="otp" value=""/>