diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-03 15:17:24 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-03 15:17:24 +0100 |
commit | 494dea2c60ae77cc6cbe6c481bc92a76fe5bdc9e (patch) | |
tree | 150e503b272bce5bd6aad9e960026777a98abeac /core/templates/login.php | |
parent | 585e9f9fcdfbe095f7112ca102c7da59179266e0 (diff) | |
download | nextcloud-server-494dea2c60ae77cc6cbe6c481bc92a76fe5bdc9e.tar.gz nextcloud-server-494dea2c60ae77cc6cbe6c481bc92a76fe5bdc9e.zip |
Fix variable name
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index c7b43bb3d84..2f6bce76e88 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -51,7 +51,7 @@ script('core', 'merged-login'); <label for="password" class="infield"><?php p($l->t('Password')); ?></label> </p> - <?php if (!empty($_['invalidpassword']) && !empty($_['canResetPlost-passwordassword'])) { ?> + <?php if (!empty($_['invalidpassword']) && !empty($_['canResetPassword'])) { ?> <a id="lost-password" class="warning" href="<?php p($_['resetPasswordLink']); ?>"> <?php p($l->t('Wrong password. Reset it?')); ?> </a> |